Similar in use to FBVector4d
# Supported list protocol methods: v = FBVertex() len(v) print v[0] v[0] = 1.0
Public Member Functions |
|
FBVertex () | |
FBVertex (FBVertex) | |
int | __len__ () |
Returns the number of elements. |
|
float | __getitem__ (int pIndex) |
Returns the ith component Corresponds to
python: print v[1]. |
|
__setitem__ (int pIndex, float pComponentValue) | |
Sets the ith components Corresponds to
python: v[1] = 0.5. |
FBVertex | ( | ) |
int __len__ | ( | ) |
Returns the number of elements.
Corresponds to python: len(object)
Returns the ith component Corresponds to python: print v[1].
pIndex | Index of the components to get (0 to 1) |
Sets the ith components Corresponds to python: v[1] = 0.5.
pIndex | Index of the components to set (0 to 1) | |
pComponentValue | Value of component to set |