Skip to content

Commit 666c2d5

Browse files
fix documentation compliance failures
1 parent af43977 commit 666c2d5

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

Analytical_Engine/Query/IsOutlineRectangular.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ public static partial class Query
3939
/**** Public Methods ****/
4040
/***************************************************/
4141

42-
[Description("Determines whether a panel's outline is a rectangular.")]
42+
[Description("Determines whether a Panel's outline is a rectangular.")]
4343
[Input("panel", "The IPanel to check if the outline is a rectangular.")]
44-
[Output("bool", "True for panels with a rectangular outline or false for panels with a non rectangular outline.")]
44+
[Output("bool", "True for Panels with a rectangular outline or false for Panels with a non rectangular outline.")]
4545
public static bool IsOutlineRectangular<TEdge, TOpening>(this IPanel<TEdge, TOpening> panel)
4646
where TEdge : IEdge
4747
where TOpening : IOpening<TEdge>

Geometry_Engine/Query/IsQuad.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,18 @@ public static partial class Query
3535
/***************************************************/
3636
/**** Public Methods ****/
3737
/***************************************************/
38-
[Description("Determines whether a Polycurve is a quadilaterial.")]
39-
[Input("panel", "The Polycurve to check if it is quadilaterial.")]
40-
[Output("bool", "True for Polycurves that are quadilaterial or false for Polycurves that are non-quadilaterial.")]
38+
[Description("Determines whether a Face is a quadilaterial.")]
39+
[Input("face", "The Face to check if it is quadilaterial.")]
40+
[Output("bool", "True for Faces that are quadilaterial or false for Faces that are non-quadilaterial.")]
4141
public static bool IsQuad(this Face face)
4242
{
4343
return face.D != -1;
4444
}
4545

4646
/***************************************************/
47-
47+
[Description("Determines whether a Polycurve is a quadilaterial.")]
48+
[Input("polycurve", "The Polycurve to check if it is quadilaterial.")]
49+
[Output("bool", "True for Polycurves that are quadilaterial or false for Polycurves that are non-quadilaterial.")]
4850
public static bool IsQuad(this PolyCurve polycurve)
4951
{
5052
if (polycurve == null)

Geometry_Engine/Query/IsRectangular.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static partial class Query
3939
/***************************************************/
4040

4141
[Description("Determines whether a Polycurve is a rectangular.")]
42-
[Input("panel", "The Polycurve to check if it is rectangular.")]
42+
[Input("polycurve", "The Polycurve to check if it is rectangular.")]
4343
[Output("bool", "True for Polycurves that are rectangular or false for Polycurves that are rectangular.")]
4444
public static bool IsRectangular(this PolyCurve polycurve)
4545
{

Geometry_Engine/Query/IsSquare.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static partial class Query
3636
/**** Public Methods ****/
3737
/***************************************************/
3838
[Description("Determines whether a Polycurve is a square.")]
39-
[Input("panel", "The Polycurve to check if it is square.")]
39+
[Input("polycurve", "The Polycurve to check if it is square.")]
4040
[Output("bool", "True for Polycurves that are square or false for Polycurves that are not square.")]
4141

4242
public static bool IsSquare(this PolyCurve polycurve)

Geometry_Engine/Query/IsTriangular.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static partial class Query
3939
/***************************************************/
4040

4141
[Description("Determines whether a Polycurve is triangular.")]
42-
[Input("panel", "The Polycurve to check if it is triangular.")]
42+
[Input("polycurve", "The Polycurve to check if it is triangular.")]
4343
[Output("bool", "True for Polycurves that are triangular or false for Polycurves that are non-triangular.")]
4444
public static bool IsTriangular(this PolyCurve polycurve)
4545
{

0 commit comments

Comments
 (0)