Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
% majorBaseShape : (1,1) <a href="matlab:help openminds.sands.mathematicalshape.Circle" style="font-weight:bold">Circle</a>, <a href="matlab:help openminds.sands.mathematicalshape.CircularSector" style="font-weight:bold">CircularSector</a>, <a href="matlab:help openminds.sands.mathematicalshape.Ellipse" style="font-weight:bold">Ellipse</a>, <a href="matlab:help openminds.sands.mathematicalshape.EquilateralTriangle" style="font-weight:bold">EquilateralTriangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.IsoscelesTriangle" style="font-weight:bold">IsoscelesTriangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.Kite" style="font-weight:bold">Kite</a>, <a href="matlab:help openminds.sands.mathematicalshape.Parallelogram" style="font-weight:bold">Parallelogram</a>, <a href="matlab:help openminds.sands.mathematicalshape.Rectangle" style="font-weight:bold">Rectangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.RegularPolygon" style="font-weight:bold">RegularPolygon</a>, <a href="matlab:help openminds.sands.mathematicalshape.Rhombus" style="font-weight:bold">Rhombus</a>, <a href="matlab:help openminds.sands.mathematicalshape.RightTriangle" style="font-weight:bold">RightTriangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.Square" style="font-weight:bold">Square</a>, <a href="matlab:help openminds.sands.mathematicalshape.Trapezoid" style="font-weight:bold">Trapezoid</a>, <a href="matlab:help openminds.sands.mathematicalshape.Triangle" style="font-weight:bold">Triangle</a>
% Enter the major two-dimensional base shape of this frustum.
%
% minorBaseScale : (1,1) double
% minorBaseScale : (1,:) double
% Enter the ratio of the smaller to the larger base size of this frustum.

% This class was auto-generated by the openMINDS pipeline
Expand All @@ -24,8 +24,8 @@
{mustBeScalarOrEmpty(majorBaseShape)}

% Enter the ratio of the smaller to the larger base size of this frustum.
minorBaseScale (1,1) double ...
{mustBeGreaterThan(minorBaseScale, 0), mustBeLessThan(minorBaseScale, 1)}
minorBaseScale (1,:) double ...
{mustBeScalarOrEmpty(minorBaseScale), mustBeGreaterThan(minorBaseScale, 0), mustBeLessThan(minorBaseScale, 1)}
end

properties (Access = protected)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
% majorBaseShape : (1,1) <a href="matlab:help openminds.sands.mathematicalshape.Circle" style="font-weight:bold">Circle</a>, <a href="matlab:help openminds.sands.mathematicalshape.CircularSector" style="font-weight:bold">CircularSector</a>, <a href="matlab:help openminds.sands.mathematicalshape.Ellipse" style="font-weight:bold">Ellipse</a>, <a href="matlab:help openminds.sands.mathematicalshape.EquilateralTriangle" style="font-weight:bold">EquilateralTriangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.IsoscelesTriangle" style="font-weight:bold">IsoscelesTriangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.Kite" style="font-weight:bold">Kite</a>, <a href="matlab:help openminds.sands.mathematicalshape.Parallelogram" style="font-weight:bold">Parallelogram</a>, <a href="matlab:help openminds.sands.mathematicalshape.Rectangle" style="font-weight:bold">Rectangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.RegularPolygon" style="font-weight:bold">RegularPolygon</a>, <a href="matlab:help openminds.sands.mathematicalshape.Rhombus" style="font-weight:bold">Rhombus</a>, <a href="matlab:help openminds.sands.mathematicalshape.RightTriangle" style="font-weight:bold">RightTriangle</a>, <a href="matlab:help openminds.sands.mathematicalshape.Square" style="font-weight:bold">Square</a>, <a href="matlab:help openminds.sands.mathematicalshape.Trapezoid" style="font-weight:bold">Trapezoid</a>, <a href="matlab:help openminds.sands.mathematicalshape.Triangle" style="font-weight:bold">Triangle</a>
% Enter the major two-dimensional base shape of this frustum.
%
% minorBaseScale : (1,1) double
% minorBaseScale : (1,:) double
% Enter the ratio of the smaller to the larger base size of this frustum.

% This class was auto-generated by the openMINDS pipeline
Expand All @@ -24,8 +24,8 @@
{mustBeScalarOrEmpty(majorBaseShape)}

% Enter the ratio of the smaller to the larger base size of this frustum.
minorBaseScale (1,1) double ...
{mustBeGreaterThan(minorBaseScale, 0), mustBeLessThan(minorBaseScale, 1)}
minorBaseScale (1,:) double ...
{mustBeScalarOrEmpty(minorBaseScale), mustBeGreaterThan(minorBaseScale, 0), mustBeLessThan(minorBaseScale, 1)}
end

properties (Access = protected)
Expand Down
Loading