Skip to content

Dynamo Node Changes

aparajit-pratap edited this page Apr 16, 2016 · 18 revisions

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 now Vector.AngleWithVector(otherVector)

  • Vector.AngleBetween(otherVector, rotationAxis) is now Vector.AngleAboutAxis(otherVector,rotationAxis)

  • EllipseArc.ByPlaneRadiiStartAngleSweepAngle is now EllipseArc.ByPlaneRadiiAngles

  • Curve.ParameterSplit(parameter) is now Curve.SplitByParameter(parameter)

  • Curve.ParameterSplit(parameter[]) is now Curve.SplitByParameter(parameter[])

  • Curve.PointAtDistance is now Curve.PointAtSegmentLength

  • Curve.ParameterAtDistance is now Curve.ParameterAtSegmentLength

  • Curve.PlaneAtDistance is now Curve.PlaneAtSegmentLength

  • Curve.DistanceAtParameter is now Curve.SegmentLengthAtParameter

  • Curve.CoordinateSystemAtDistance is now Curve.CoordinateSystemAtSegmentLength

  • Curve.LengthBetweenParameters is now Curve.SegmentLengthBetweenParameters

  • Curve.ParameterTrim is now Curve.TrimByParameter

  • Curve.ParameterTrimStart is now Curve.TrimByStartParameter

  • Curve.ParameterTrimEnd is now Curve.TrimByEndParameter

  • Curve.ParameterTrimInterior is now Curve.TrimInteriorByParameter

  • Curve.ParameterTrimSegments is now Curve.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 (Use PointsAtEqualSegmentLength and SplitByPoints)
  • DivideByDistance (Use PointsAtEqualChordLength and SplitByPoints)
  • DivideByLengthFromParameter (Use PointsAtSegmentLengthFromPoint and SplitByPoints)
  • DivideByDistanceFromParameter (Use PointsAtChordLengthFromPoint and SplitByPoints)

Releases

Roadmap

How To

Dynamo Internals

Contributing

Python3 Upgrade Work

Libraries

FAQs

API and Dynamo Nodes

Clone this wiki locally