Skip to content

REVIT-232867 - Revise Input Port Descriptions #3139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Libraries/RevitNodes/Elements/FamilyInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
/// </summary>
/// <param name="familyType">Family Type. Also called Family Symbol.</param>
/// <param name="x">X coordinate in meters</param>
/// <param name="y">Y coordinate in meters</param>
/// <param name="z">Z coordinate in meters</param>
/// <param name="x">X coordinate in project units</param>
/// <param name="y">Y coordinate in project units</param>
/// <param name="z">Z coordinate in project units</param>
/// <returns></returns>
public static FamilyInstance ByCoordinates(FamilyType familyType, double x = 0, double y = 0, double z = 0)
{
Expand All @@ -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
/// </summary>
/// <param name="familyType">Family Type. Also called Family Symbol.</param>
/// <param name="point">Point in meters.</param>
/// <param name="point">Point in project units.</param>
/// <param name="level">Level to host Family Instance.</param>
/// <returns></returns>
public static FamilyInstance ByPointAndLevel(FamilyType familyType, Point point, Level level)
Expand Down
2 changes: 1 addition & 1 deletion src/Libraries/RevitNodes/Elements/ReferencePoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public static ReferencePoint ByPointVectorDistance(Point basePoint, Vector direc
/// Create a Reference Point at a particular length along a curve
/// </summary>
/// <param name="elementCurveReference"></param>
/// <param name="length">Distance in meters along the curve</param>
/// <param name="length">Distance in project units along the curve</param>
/// <returns></returns>
public static ReferencePoint ByLengthOnCurveReference(object elementCurveReference, double length)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Libraries/RevitNodes/Elements/Views/AxonometricView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>
/// <param name="eyePoint">A Point representing the eye point in meters.</param>
/// <param name="target">A Point representing the target of view in meters.</param>
/// <param name="eyePoint">A Point representing the eye point in project units.</param>
/// <param name="target">A Point representing the target of view in project units.</param>
/// <param name="name">The name of the view.</param>
/// <returns>An AxonometricView object.</returns>
public static AxonometricView ByEyePointAndTarget(
Expand Down
6 changes: 3 additions & 3 deletions src/Libraries/RevitNodes/Elements/Views/PerspectiveView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ public static PerspectiveView ByEyePointTargetAndElement(Autodesk.DesignScript.G
/// <summary>
/// Create a Revit Perspective View from an Eye position and target position and Bounding Box
/// </summary>
/// <param name="eyePoint">Eye point in meters</param>
/// <param name="target">Target of view in meters</param>
/// <param name="boundingBox">Bounding box represented in meters</param>
/// <param name="eyePoint">Eye point in project units</param>
/// <param name="target">Target of view in project units</param>
/// <param name="boundingBox">Bounding box represented in project units</param>
/// <param name="name"></param>
/// <param name="isolateElement"></param>
/// <returns></returns>
Expand Down
2 changes: 1 addition & 1 deletion src/Libraries/RevitNodes/Elements/Views/SectionView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private static ViewSection CreateSectionView(BoundingBoxXYZ bbox)
/// <summary>
/// Create a Revit ViewSection by a bounding box
/// </summary>
/// <param name="box">The bounding box of the view in meters</param>
/// <param name="box">The bounding box of the view in project units</param>
/// <returns></returns>
public static SectionView ByBoundingBox(Autodesk.DesignScript.Geometry.BoundingBox box)
{
Expand Down