File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ public static partial class Query
39
39
/**** Public Methods ****/
40
40
/***************************************************/
41
41
42
- [ Description ( "Determines whether a panel 's outline is a rectangular." ) ]
42
+ [ Description ( "Determines whether a Panel 's outline is a rectangular." ) ]
43
43
[ 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." ) ]
45
45
public static bool IsOutlineRectangular < TEdge , TOpening > ( this IPanel < TEdge , TOpening > panel )
46
46
where TEdge : IEdge
47
47
where TOpening : IOpening < TEdge >
Original file line number Diff line number Diff line change @@ -35,16 +35,18 @@ public static partial class Query
35
35
/***************************************************/
36
36
/**** Public Methods ****/
37
37
/***************************************************/
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." ) ]
41
41
public static bool IsQuad ( this Face face )
42
42
{
43
43
return face . D != - 1 ;
44
44
}
45
45
46
46
/***************************************************/
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." ) ]
48
50
public static bool IsQuad ( this PolyCurve polycurve )
49
51
{
50
52
if ( polycurve == null )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public static partial class Query
39
39
/***************************************************/
40
40
41
41
[ 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." ) ]
43
43
[ Output ( "bool" , "True for Polycurves that are rectangular or false for Polycurves that are rectangular." ) ]
44
44
public static bool IsRectangular ( this PolyCurve polycurve )
45
45
{
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public static partial class Query
36
36
/**** Public Methods ****/
37
37
/***************************************************/
38
38
[ 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." ) ]
40
40
[ Output ( "bool" , "True for Polycurves that are square or false for Polycurves that are not square." ) ]
41
41
42
42
public static bool IsSquare ( this PolyCurve polycurve )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public static partial class Query
39
39
/***************************************************/
40
40
41
41
[ 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." ) ]
43
43
[ Output ( "bool" , "True for Polycurves that are triangular or false for Polycurves that are non-triangular." ) ]
44
44
public static bool IsTriangular ( this PolyCurve polycurve )
45
45
{
You can’t perform that action at this time.
0 commit comments