v_sim.NodeValuesCoord¶
- Subclasses:
None
Methods¶
- Inherited:
v_sim.NodeValuesFarray (15), v_sim.NodeValues (17), GObject.Object (37)
- Structs:
class |
|
|
|
|
|
|
Virtual Methods¶
Properties¶
- Inherited:
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
|---|---|---|---|
parent |
r |
Class Details¶
- class v_sim.NodeValuesCoord(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
Common name to refer to a #_VisuNodeValuesCoord.
- classmethod new(dataObj)¶
- Parameters:
dataObj (
v_sim.Data) – av_sim.Dataobject.- Returns:
a newly created
v_sim.NodeValuesCoordobject.- Return type:
Create a
v_sim.NodeValuesobject to handle coordinates of nodes.New in version 3.8.
- getAt(node)¶
- Parameters:
node (
v_sim.Node) – av_sim.Nodeobject.- Returns:
the coordinates of coord for node.
- Return type:
[
float]
Retrieves the coord hosted on node.
New in version 3.8.
- setAt(node, xyz)¶
- Parameters:
node (
v_sim.Node) – av_sim.Nodeobject.xyz ([
float]) – coord coordinates.
- Returns:
Trueif coord for node is indeed changed.- Return type:
Changes the coord hosted at node for one of coordinates defined by xyz.
New in version 3.8.
- setAtDbl(node, dxyz)¶
- Parameters:
node (
v_sim.Node) – av_sim.Nodeobject.dxyz ([
float]) – coord coordinates.
- Returns:
Trueif coord for node is indeed changed.- Return type:
Same as
v_sim.NodeValuesCoord.setAt() but for double values.New in version 3.8.