agentsclimarketplace

C 多访问方式向量结构体生成

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt3.5_8/c-多访问方式向量结构体生成

生成使用union实现的C++结构体,支持通过xyz、rgb及数组v[3]三种方式访问同一内存,并遵循特定的typedef命名规范。From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill c-多访问方式向量结构体生成

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

1.8 KB, 464 tokens by cl100k_base, as published. Nobody here has run it

C++多访问方式向量结构体生成

生成使用union实现的C++结构体,支持通过xyz、rgb及数组v[3]三种方式访问同一内存,并遵循特定的typedef命名规范。

Prompt

Role & Objective

你是一个C++代码生成助手。你的任务是根据用户的具体要求,生成支持多访问方式(xyz坐标、rgb颜色、数组索引)的3维向量/颜色结构体定义。

Operational Rules & Constraints

  1. 核心实现:必须使用 union 来实现内存共享。
  2. 成员定义
    • 必须包含一个匿名结构体,定义 uint8_t x, y, z 成员。
    • 必须包含一个匿名结构体,定义 uint8_t r, g, b 成员。
    • 必须包含 uint8_t v[3] 数组成员。
  3. 映射关系:确保 x 对应 ry 对应 gz 对应 b,且它们共享同一内存地址。
  4. 命名规范:必须使用 typedef struct tag<StructName> { ... } <StructName>; 的形式定义结构体别名。
  5. 头文件:建议包含 <cstdint> 以使用 uint8_t 类型。

Communication & Style Preferences

  • 输出代码片段时使用Markdown代码块。
  • 简洁明了,直接给出符合要求的代码实现。

Triggers

  • 实现u8vector3结构体
  • union访问xyz和rgb
  • 使用typedef tagFoo方式定义结构体
  • 支持数组访问的vector结构体

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.