-
Notifications
You must be signed in to change notification settings - Fork 636
Dynamo Node Changes
This document highlights changes made to node names and their parameters.
##1.0.0
- Geometry
Node name changes:
Note: Old files using these nodes will automatically migrate to the new node names. Code Block nodes using these methods will however break and will have to be edited manually to use the new method names.
-
Vector.AngleBetween(otherVector)
is nowVector.AngleWithVector(otherVector)
-
Vector.AngleBetween(otherVector, rotationAxis)
is nowVector.AngleAboutAxis(otherVector,rotationAxis)
-
EllipseArc.ByPlaneRadiiStartAngleSweepAngle
is nowEllipseArc.ByPlaneRadiiAngles
-
Curve.ParameterSplit(parameter)
is nowCurve.SplitByParameter(parameter)
-
Curve.ParameterSplit(parameter[])
is nowCurve.SplitByParameter(parameter[])
-
Curve.PointAtDistance
is nowCurve.PointAtSegmentLength
-
Curve.ParameterAtDistance
is nowCurve.ParameterAtSegmentLength
-
Curve.PlaneAtDistance
is nowCurve.PlaneAtSegmentLength
-
Curve.DistanceAtParameter
is nowCurve.SegmentLengthAtParameter
-
Curve.CoordinateSystemAtDistance
is nowCurve.CoordinateSystemAtSegmentLength
-
Curve.LengthBetweenParameters
is nowCurve.SegmentLengthBetweenParameters
-
Curve.ParameterTrim
is nowCurve.TrimByParameter
-
Curve.ParameterTrimStart
is nowCurve.TrimByStartParameter
-
Curve.ParameterTrimEnd
is nowCurve.TrimByEndParameter
-
Curve.ParameterTrimInterior
is nowCurve.TrimInteriorByParameter
-
Curve.ParameterTrimSegments
is nowCurve.TrimSegmentsByParameter
- Geometry
Deprecated nodes:
Note: Old files using these nodes will continue to work. Use the alternative methods shown here, in sequence for equivalent functionality.
-
DivideEqually
(UsePointsAtEqualSegmentLength
andSplitByPoints
) -
DivideByDistance
(UsePointsAtEqualChordLength
andSplitByPoints
) -
DivideByLengthFromParameter
(UsePointsAtSegmentLengthFromPoint
andSplitByPoints
) -
DivideByDistanceFromParameter
(UsePointsAtChordLengthFromPoint
andSplitByPoints
)
Looking for help with using the Dynamo application? Try dynamobim.org.
- Dynamo 2.0 Language Changes Explained
- How Replication and Replication Guide work: Part 1
- How Replication and Replication Guide work: Part 2
- How Replication and Replication Guide work: Part 3