Top | ![]() |
![]() |
![]() |
![]() |
VisuNodeValuesCoordVisuNodeValuesCoord — define a VisuNodeValues object to access node coordinates. |
GObject ╰── ToolDbgObj ╰── VisuNodeValues ╰── VisuNodeValuesFarray ╰── VisuNodeValuesCoord
VisuNodeValuesCoord *
visu_node_values_coord_new (VisuData *dataObj
);
Create a VisuNodeValues object to handle coordinates of nodes.
Since: 3.8
const gfloat * visu_node_values_coord_getAt (const VisuNodeValuesCoord *vect
,const VisuNode *node
);
Retrieves the coord hosted on node
.
Since: 3.8
gboolean visu_node_values_coord_setAt (VisuNodeValuesCoord *vect
,const VisuNode *node
,const gfloat xyz[3]
);
Changes the coord hosted at node
for one of coordinates defined
by xyz
.
vect |
a VisuNodeValuesCoord object. |
|
node |
a VisuNode object. |
|
xyz |
coord coordinates. |
[array fixed-size=3] |
Since: 3.8
gboolean visu_node_values_coord_setAtDbl (VisuNodeValuesCoord *vect
,const VisuNode *node
,const double dxyz[3]
);
Same as visu_node_values_coord_setAt()
but for double values.
vect |
a VisuNodeValuesCoord object. |
|
node |
a VisuNode object. |
|
dxyz |
coord coordinates. |
[array fixed-size=3] |
Since: 3.8
struct VisuNodeValuesCoord;
Common name to refer to a _VisuNodeValuesCoord.
struct VisuNodeValuesCoordClass { VisuNodeValuesFarrayClass parent; };
Common name to refer to a _VisuNodeValuesCoordClass.