Parameters: | count (int) – The count of elements |
---|---|
Return type: | UVWTag |
Returns: | A new UVW tag. |
Get the UVW coordinates for a polygon.
Parameters: | i (int) – The index of the polygon to get the coordinates for. |
---|---|
Return type: | c4d.Vector |
Returns: | The UVW coordinates. |
Get the UVW coordinate for a polygon:
for i in xrange(uvwtag.GetDataCount()):
uvwdict = uvwtag.GetSlow(i)
print uvwdict["a"]
print uvwdict["b"]
print uvwdict["c"]
print uvwdict["d"]
Raises IndexError: | |
---|---|
Checks if i is out of range. 0<=i < VariableTag.GetDataCount() | |
Return type: | dict{a: c4d.Vector, b: c4d.Vector, c: c4d.Vector, d: c4d.Vector} |
Returns: | The UVW coordinates. |
Set the UVW coordinates of a polygon.
Raises IndexError: | |
---|---|
Checks if i is out of range. 0<=i < VariableTag.GetDataCount() |
|
Parameters: |
|
Copy a UVW coordinate.
Raises IndexError: | |
---|---|
Checks if i is out of range for self and/or src. The value i must be 0<=i < VariableTag.GetDataCount() |
|
Parameters: |
|