diff --git a/src/Libraries/RevitNodes/Elements/FamilyInstance.cs b/src/Libraries/RevitNodes/Elements/FamilyInstance.cs index 4962aa8fa..92f397efe 100644 --- a/src/Libraries/RevitNodes/Elements/FamilyInstance.cs +++ b/src/Libraries/RevitNodes/Elements/FamilyInstance.cs @@ -443,9 +443,9 @@ public static FamilyInstance ByFace(FamilyType familyType, Surface face, Point l /// Place a Revit FamilyInstance given the FamilyType (also known as the FamilySymbol in the Revit API) and its coordinates in world space /// /// Family Type. Also called Family Symbol. - /// X coordinate in meters - /// Y coordinate in meters - /// Z coordinate in meters + /// X coordinate in project units + /// Y coordinate in project units + /// Z coordinate in project units /// public static FamilyInstance ByCoordinates(FamilyType familyType, double x = 0, double y = 0, double z = 0) { @@ -463,7 +463,7 @@ public static FamilyInstance ByCoordinates(FamilyType familyType, double x = 0, /// Place a Revit FamilyInstance given the FamilyType (also known as the FamilySymbol in the Revit API), it's coordinates in world space, and the Level /// /// Family Type. Also called Family Symbol. - /// Point in meters. + /// Point in project units. /// Level to host Family Instance. /// public static FamilyInstance ByPointAndLevel(FamilyType familyType, Point point, Level level) diff --git a/src/Libraries/RevitNodes/Elements/ReferencePoint.cs b/src/Libraries/RevitNodes/Elements/ReferencePoint.cs index 8947e30aa..fa8ae9192 100644 --- a/src/Libraries/RevitNodes/Elements/ReferencePoint.cs +++ b/src/Libraries/RevitNodes/Elements/ReferencePoint.cs @@ -397,7 +397,7 @@ public static ReferencePoint ByPointVectorDistance(Point basePoint, Vector direc /// Create a Reference Point at a particular length along a curve /// /// - /// Distance in meters along the curve + /// Distance in project units along the curve /// public static ReferencePoint ByLengthOnCurveReference(object elementCurveReference, double length) { diff --git a/src/Libraries/RevitNodes/Elements/Views/AxonometricView.cs b/src/Libraries/RevitNodes/Elements/Views/AxonometricView.cs index 9e05a65c4..7061b18dd 100644 --- a/src/Libraries/RevitNodes/Elements/Views/AxonometricView.cs +++ b/src/Libraries/RevitNodes/Elements/Views/AxonometricView.cs @@ -144,8 +144,8 @@ private void InternalSetIsolation(Autodesk.Revit.DB.BoundingBoxXYZ bbox, bool is /// Create a Revit Axonometric (isometric) View from an eye position /// and a target position. /// - /// A Point representing the eye point in meters. - /// A Point representing the target of view in meters. + /// A Point representing the eye point in project units. + /// A Point representing the target of view in project units. /// The name of the view. /// An AxonometricView object. public static AxonometricView ByEyePointAndTarget( diff --git a/src/Libraries/RevitNodes/Elements/Views/PerspectiveView.cs b/src/Libraries/RevitNodes/Elements/Views/PerspectiveView.cs index b160278c5..01029ded9 100644 --- a/src/Libraries/RevitNodes/Elements/Views/PerspectiveView.cs +++ b/src/Libraries/RevitNodes/Elements/Views/PerspectiveView.cs @@ -232,9 +232,9 @@ public static PerspectiveView ByEyePointTargetAndElement(Autodesk.DesignScript.G /// /// Create a Revit Perspective View from an Eye position and target position and Bounding Box /// - /// Eye point in meters - /// Target of view in meters - /// Bounding box represented in meters + /// Eye point in project units + /// Target of view in project units + /// Bounding box represented in project units /// /// /// diff --git a/src/Libraries/RevitNodes/Elements/Views/SectionView.cs b/src/Libraries/RevitNodes/Elements/Views/SectionView.cs index e2b454a1f..3db0598c3 100644 --- a/src/Libraries/RevitNodes/Elements/Views/SectionView.cs +++ b/src/Libraries/RevitNodes/Elements/Views/SectionView.cs @@ -133,7 +133,7 @@ private static ViewSection CreateSectionView(BoundingBoxXYZ bbox) /// /// Create a Revit ViewSection by a bounding box /// - /// The bounding box of the view in meters + /// The bounding box of the view in project units /// public static SectionView ByBoundingBox(Autodesk.DesignScript.Geometry.BoundingBox box) {