Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve-PrimFillAttr #2080

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions zeno/src/nodes/neo/PrimAttrOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,23 @@ struct PrimFillAttr : INode {
std::fill(arr.begin(), arr.end(), val);
}
}, enum_variant<std::variant<
float, vec3f, int
float
, vec2f
, vec3f
, vec4f
, int
, vec2i
, vec3i
, vec4i
>>(array_index({
"float", "vec3f", "int"
"float"
, "vec2f"
, "vec3f"
, "vec4f"
, "int"
, "vec2i"
, "vec3i"
, "vec4i"
}, type)));
set_output("prim", std::move(prim));
}
Expand All @@ -57,7 +71,7 @@ ZENDEFNODE(PrimFillAttr, {
{"PrimitiveObject", "prim"},
{"enum vert tri loop poly line", "scope", "vert"},
{"string", "attr", "rad"},
{"enum float vec3f int", "type", "float"},
{"enum float vec2f vec3f vec4f int vec2i vec3i vec4i", "type", "float"},
{"float", "value", "0"},
},
{
Expand Down
Loading