Skip to content

Commit

Permalink
Update Plane.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Nov 30, 2023
1 parent 15e2313 commit 61cc930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenMEPSandbox/Geometry/Plane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private Plane()
var colorY = DSCore.Color.ByARGB(255, 0, 255, 0);
var lineN = Autodesk.DesignScript.Geometry.Line.ByStartPointDirectionLength(pt, plane.Normal, length);
var colorN = DSCore.Color.ByARGB(255, 0, 0, 255);
var rect = Rectangle.ByWidthLength(plane, length, length);
var rect = Autodesk.DesignScript.Geometry.Rectangle.ByWidthLength(plane, length, length);
var colorR = DSCore.Color.ByARGB(50, 50, 50, 50);
List<Modifiers.GeometryColor> display = new List<Modifiers.GeometryColor>();
display.Add(Modifiers.GeometryColor.ByGeometryColor(lineX, colorX));
Expand Down

0 comments on commit 61cc930

Please sign in to comment.