43 #ifdef TOPOLOGIC_DYNAMO
44 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
47 #ifdef TOPOLOGIC_DYNAMO
48 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
51 #ifdef TOPOLOGIC_DYNAMO
52 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
68 #ifdef TOPOLOGIC_DYNAMO
69 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
72 #ifdef TOPOLOGIC_DYNAMO
73 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
76 #ifdef TOPOLOGIC_DYNAMO
77 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
80 #ifdef TOPOLOGIC_DYNAMO
81 [Autodesk::DesignScript::Runtime::DefaultArgument(
"0.0")]
95 #ifdef TOPOLOGIC_DYNAMO
96 [Autodesk::DesignScript::Runtime::DefaultArgument(
"1.0")]
99 #ifdef TOPOLOGIC_DYNAMO
100 [Autodesk::DesignScript::Runtime::DefaultArgument(
"1.0")]
103 #ifdef TOPOLOGIC_DYNAMO
104 [Autodesk::DesignScript::Runtime::DefaultArgument(
"1.0")]
125 #ifdef TOPOLOGIC_DYNAMO 126 [IsVisibleInDynamoLibrary(
false)]
129 double translationX,
double translationY,
double translationZ,
130 double rotation11,
double rotation12,
double rotation13,
131 double rotation21,
double rotation22,
double rotation23,
132 double rotation31,
double rotation32,
double rotation33);
A Vertex is a zero-dimensional entity equivalent to a geometry point.
Definition: Vertex.h:31
A Topology is an abstract superclass that includes constructors, properties and methods used by other...
Definition: Topology.h:53
static Topology ^ Translate(Topology^ topology, double x, double y, double z)
Translates (moves) a Topology a certain distance according to XYZ values.
Definition: TopologyUtility.cpp:29
static List< Topology^> ^ AdjacentTopologies(Topology^ topology, Topology^ parentTopology, int typeFilter)
Returns a list of Topologies that are the adjacent to the input Topology.
Definition: TopologyUtility.cpp:89
TopologyUtility includes geometric methods relevant to any Topology.
Definition: TopologyUtility.h:29
static Topology ^ Rotate(Topology^ topology, Vertex^ origin, double xVector, double yVector, double zVector, double degree)
Rotates a Topology given an origin, XYZ vectors and an angle.
Definition: TopologyUtility.cpp:40
Topologic is an open-source software modelling library enabling hierarchical and topological represen...
Definition: About.h:23
static Topology ^ Transform(Topology^ topology, double translationX, double translationY, double translationZ, double rotation11, double rotation12, double rotation13, double rotation21, double rotation22, double rotation23, double rotation31, double rotation32, double rotation33)
Transforms a Topology according to translation and rotation factors.
Definition: TopologyUtility.cpp:69
static Topology ^ Scale(Topology^ topology, Vertex^ origin, double xFactor, double yFactor, double zFactor)
Scales a Topology according to an origin and XYZ factors.
Definition: TopologyUtility.cpp:56