1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00

0024830: Remove redundant keyword 'mutable' in CDL declarations

Redundant keyword 'mutable' removed in CDL files.
In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed.
Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
abv 2014-04-15 08:50:00 +04:00 committed by apn
parent 99c68ea35f
commit 6e33d3ced2
2421 changed files with 6557 additions and 6604 deletions
src
AIS
APIHeaderSection
Adaptor2d
Adaptor3d
AppStd
AppStdL
Approx
Aspect
BOPDS
BOPInt
BOPTest
BRep
BRepAlgo
BRepApprox
BRepBlend
BRepBuilderAPI
BRepCheck
BRepFilletAPI
BRepLib
BRepMesh
BRepOffset

@ -682,8 +682,8 @@ is
---Purpose: computes length of ellipse arc in parametric units ---Purpose: computes length of ellipse arc in parametric units
ComputeProjEdgePresentation(aPres : mutable Presentation from Prs3d; ComputeProjEdgePresentation(aPres : Presentation from Prs3d;
aDrawer : mutable Drawer from AIS; aDrawer : Drawer from AIS;
anEdge : Edge from TopoDS; anEdge : Edge from TopoDS;
ProjCurve: Curve from Geom; ProjCurve: Curve from Geom;
FirstP : Pnt from gp; FirstP : Pnt from gp;
@ -693,8 +693,8 @@ is
aProjTOL : TypeOfLine from Aspect = Aspect_TOL_DASH; aProjTOL : TypeOfLine from Aspect = Aspect_TOL_DASH;
aCallTOL : TypeOfLine from Aspect = Aspect_TOL_DOT); aCallTOL : TypeOfLine from Aspect = Aspect_TOL_DOT);
ComputeProjVertexPresentation(aPres : mutable Presentation from Prs3d; ComputeProjVertexPresentation(aPres : Presentation from Prs3d;
aDrawer : mutable Drawer from AIS; aDrawer : Drawer from AIS;
aVertex : Vertex from TopoDS; aVertex : Vertex from TopoDS;
ProjPoint: Pnt from gp; ProjPoint: Pnt from gp;
aColor : NameOfColor from Quantity = Quantity_NOC_PURPLE; aColor : NameOfColor from Quantity = Quantity_NOC_PURPLE;

@ -34,19 +34,19 @@ uses
is is
Create returns mutable AttributeFilter from AIS; Create returns AttributeFilter from AIS;
---Purpose: ---Purpose:
-- Constructs an empty attribute filter object. -- Constructs an empty attribute filter object.
-- This filter object determines whether selectable -- This filter object determines whether selectable
-- interactive objects have a non-null owner. -- interactive objects have a non-null owner.
Create (aCol: NameOfColor from Quantity) Create (aCol: NameOfColor from Quantity)
returns mutable AttributeFilter from AIS; returns AttributeFilter from AIS;
---Purpose: ---Purpose:
-- Constructs an attribute filter object defined by the -- Constructs an attribute filter object defined by the
-- color attribute aCol. -- color attribute aCol.
Create (aWidth : Real from Standard) Create (aWidth : Real from Standard)
returns mutable AttributeFilter from AIS; returns AttributeFilter from AIS;
---Purpose: ---Purpose:
-- Constructs an attribute filter object defined by the line -- Constructs an attribute filter object defined by the line
-- width attribute aWidth. -- width attribute aWidth.

@ -45,17 +45,17 @@ uses
is is
Create(aComponent : Line from Geom) Create(aComponent : Line from Geom)
returns mutable Axis from AIS; returns Axis from AIS;
--- Purpose: Initializes the line aComponent --- Purpose: Initializes the line aComponent
Create( aComponent : Axis2Placement from Geom; Create( aComponent : Axis2Placement from Geom;
anAxisType: TypeOfAxis from AIS) anAxisType: TypeOfAxis from AIS)
---Purpose: initializes the axis2 position ---Purpose: initializes the axis2 position
-- aComponent. The coordinate system used is right-handed. -- aComponent. The coordinate system used is right-handed.
returns mutable Axis from AIS; returns Axis from AIS;
Create(anAxis : Axis1Placement from Geom) Create(anAxis : Axis1Placement from Geom)
returns mutable Axis from AIS; returns Axis from AIS;
---Purpose: Initializes the axis1 position anAxis. ---Purpose: Initializes the axis1 position anAxis.
Component(me) Component(me)
@ -121,19 +121,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -146,7 +146,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;

@ -27,7 +27,7 @@ uses
is is
Create Create
returns mutable BadEdgeFilter from AIS; returns BadEdgeFilter from AIS;
--- Purpose: Constructs an empty filter object for bad edges. --- Purpose: Constructs an empty filter object for bad edges.
ActsOn( me; aType : ShapeEnum from TopAbs ) ActsOn( me; aType : ShapeEnum from TopAbs )
returns Boolean from Standard returns Boolean from Standard

@ -26,7 +26,7 @@ uses
is is
Create( aShape : Shape from TopoDS ) Create( aShape : Shape from TopoDS )
returns mutable C0RegularityFilter from AIS; returns C0RegularityFilter from AIS;
ActsOn( me; aType : ShapeEnum from TopAbs ) ActsOn( me; aType : ShapeEnum from TopAbs )
returns Boolean from Standard returns Boolean from Standard

@ -46,7 +46,7 @@ is
-- This object is defined by the face aFShape, the -- This object is defined by the face aFShape, the
-- dimension aVal, the plane aPlane and the text aText. -- dimension aVal, the plane aPlane and the text aText.
returns mutable Chamf2dDimension from AIS; returns Chamf2dDimension from AIS;
Create (aFShape : Shape from TopoDS; Create (aFShape : Shape from TopoDS;
aPlane : Plane from Geom; aPlane : Plane from Geom;
@ -60,7 +60,7 @@ is
-- aPlane, the dimension aVal, the position aPosition, -- aPlane, the dimension aVal, the position aPosition,
-- the type of arrow aSymbolPrs with the size -- the type of arrow aSymbolPrs with the size
-- anArrowSize, and the text aText. -- anArrowSize, and the text aText.
returns mutable Chamf2dDimension from AIS; returns Chamf2dDimension from AIS;
KindOfDimension(me) KindOfDimension(me)
---Purpose: Indicates that we are concerned with a 2d length. ---Purpose: Indicates that we are concerned with a 2d length.
@ -77,19 +77,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -100,7 +100,7 @@ is
-- to the object to display before computation !!! -- to the object to display before computation !!!
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;

@ -43,7 +43,7 @@ is
---Purpose: Constructs a display object for 3D chamfers. ---Purpose: Constructs a display object for 3D chamfers.
-- This object is defined by the shape aFShape, the -- This object is defined by the shape aFShape, the
-- dimension aVal and the text aText. -- dimension aVal and the text aText.
returns mutable Chamf3dDimension from AIS; returns Chamf3dDimension from AIS;
Create (aFShape : Shape from TopoDS; Create (aFShape : Shape from TopoDS;
aVal : Real from Standard; aVal : Real from Standard;
@ -56,7 +56,7 @@ is
-- dimension aVal, the text aText, the point of origin of -- dimension aVal, the text aText, the point of origin of
-- the chamfer aPosition, the type of arrow aSymbolPrs -- the chamfer aPosition, the type of arrow aSymbolPrs
-- with the size anArrowSize. -- with the size anArrowSize.
returns mutable Chamf3dDimension from AIS; returns Chamf3dDimension from AIS;
KindOfDimension(me) KindOfDimension(me)
---Purpose: Indicates that we are concerned with a 3d length. ---Purpose: Indicates that we are concerned with a 3d length.
@ -73,19 +73,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -96,7 +96,7 @@ is
-- to the object to display before computation !!! -- to the object to display before computation !!!
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;

@ -38,14 +38,14 @@ uses
is is
Create(aCircle : Circle from Geom) Create(aCircle : Circle from Geom)
returns mutable Circle from AIS; returns Circle from AIS;
---Purpose: Initializes this algorithm for constructing AIS circle ---Purpose: Initializes this algorithm for constructing AIS circle
-- datums initializes the circle aCircle -- datums initializes the circle aCircle
Create(theCircle : Circle from Geom; Create(theCircle : Circle from Geom;
theUStart : Real from Standard; theUStart : Real from Standard;
theUEnd : Real from Standard; theUEnd : Real from Standard;
theIsFilledCircleSens : Boolean from Standard = Standard_False) theIsFilledCircleSens : Boolean from Standard = Standard_False)
returns mutable Circle from AIS; returns Circle from AIS;
---Purpose: Initializes this algorithm for constructing AIS circle datums. ---Purpose: Initializes this algorithm for constructing AIS circle datums.
-- Initializes the circle theCircle, the arc -- Initializes the circle theCircle, the arc
-- starting point theUStart, the arc ending point theUEnd, -- starting point theUStart, the arc ending point theUEnd,
@ -53,19 +53,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -78,7 +78,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
@ -143,19 +143,19 @@ is
-- then the whole circle will be detectable, otherwise only the boundary of the circle. -- then the whole circle will be detectable, otherwise only the boundary of the circle.
ComputeCircle(me: mutable; ComputeCircle(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeArc(me: mutable; ComputeArc(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeCircleSelection(me: mutable; ComputeCircleSelection(me: mutable;
aSelection : mutable Selection from SelectMgr) aSelection : Selection from SelectMgr)
is private; is private;
ComputeArcSelection(me: mutable; ComputeArcSelection(me: mutable;
aSelection : mutable Selection from SelectMgr) aSelection : Selection from SelectMgr)
is private; is private;
fields fields

@ -44,25 +44,25 @@ is
-- and aSShape and the plane aPlane. -- and aSShape and the plane aPlane.
-- aPlane is provided to create an axis along which the -- aPlane is provided to create an axis along which the
-- relation of concentricity can be extended. -- relation of concentricity can be extended.
returns mutable ConcentricRelation from AIS; returns ConcentricRelation from AIS;
-- Methods from PresentableObject -- Methods from PresentableObject
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -87,7 +87,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;

@ -54,7 +54,7 @@ raises
is is
Create (aTypeOfPresentation3d: TypeOfPresentation3d from PrsMgr = PrsMgr_TOP_AllView) Create (aTypeOfPresentation3d: TypeOfPresentation3d from PrsMgr = PrsMgr_TOP_AllView)
returns mutable ConnectedInteractive from AIS; returns ConnectedInteractive from AIS;
---Purpose: ---Purpose:
-- Disconnects the previous view and sets highlight -- Disconnects the previous view and sets highlight
-- mode to 0. This highlights the wireframe presentation -- mode to 0. This highlights the wireframe presentation
@ -105,7 +105,7 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager : PresentationManager3d from PrsMgr; aPresentationManager : PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
---Level: Public ---Level: Public
---Purpose: Calculates the view aPresentation and its updates. ---Purpose: Calculates the view aPresentation and its updates.
@ -122,7 +122,7 @@ is
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: Computes the presentation according to a point of view ---Purpose: Computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -135,10 +135,10 @@ is
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined; is redefined;
ComputeSelection(me:mutable; aSelection :mutable Selection from SelectMgr; ComputeSelection(me:mutable; aSelection : Selection from SelectMgr;
aMode : Integer) is redefined virtual private; aMode : Integer) is redefined virtual private;
---Level: Public ---Level: Public
---Purpose: Generates sensitive entities by copying ---Purpose: Generates sensitive entities by copying
@ -157,7 +157,7 @@ is
-- compute & computeSelection methods. So the -- compute & computeSelection methods. So the
-- UpdateLocation Methods are redefined to do nothing else -- UpdateLocation Methods are redefined to do nothing else
-- UpdateLocation(me:mutable;P : mutable Presentation from Prs3d) is redefined virtual; -- UpdateLocation(me:mutable;P : Presentation from Prs3d) is redefined virtual;
fields fields

@ -50,19 +50,19 @@ is
Create (aTypeOfPresentation : TypeOfPresentation3d from PrsMgr Create (aTypeOfPresentation : TypeOfPresentation3d from PrsMgr
=PrsMgr_TOP_ProjectorDependant) =PrsMgr_TOP_ProjectorDependant)
returns mutable ConnectedShape from AIS; returns ConnectedShape from AIS;
---Purpose: Initializes the type of 3d presentation aTypeOfPresentation ---Purpose: Initializes the type of 3d presentation aTypeOfPresentation
Create (aInteractiveShape : Shape from AIS; Create (aInteractiveShape : Shape from AIS;
aTypeOfPresentation : TypeOfPresentation3d from PrsMgr aTypeOfPresentation : TypeOfPresentation3d from PrsMgr
=PrsMgr_TOP_ProjectorDependant) =PrsMgr_TOP_ProjectorDependant)
returns mutable ConnectedShape from AIS; returns ConnectedShape from AIS;
---Purpose: Initializes the entity aInteractiveShape and the type of 3d presentation aTypeOfPresentation. ---Purpose: Initializes the entity aInteractiveShape and the type of 3d presentation aTypeOfPresentation.
Create(aConnectedShape : ConnectedShape from AIS; Create(aConnectedShape : ConnectedShape from AIS;
aTypeOfPresentation : TypeOfPresentation3d from PrsMgr aTypeOfPresentation : TypeOfPresentation3d from PrsMgr
=PrsMgr_TOP_ProjectorDependant) =PrsMgr_TOP_ProjectorDependant)
returns mutable ConnectedShape from AIS; returns ConnectedShape from AIS;
---Purpose: Initializes the entity aConnectedShape and the type of 3d presentation aTypeOfPresentation. ---Purpose: Initializes the entity aConnectedShape and the type of 3d presentation aTypeOfPresentation.
---Category: Redefined methods... ---Category: Redefined methods...
@ -98,16 +98,16 @@ is
Compute(me:mutable; Compute(me:mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined virtual private; is redefined virtual private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined virtual private; is redefined virtual private;
ComputeSelection(me:mutable; aSelection :mutable Selection from SelectMgr; ComputeSelection(me:mutable; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined virtual private; is redefined virtual private;
---Purpose: Generates sensitive entities by copying ---Purpose: Generates sensitive entities by copying
@ -127,7 +127,7 @@ is
Compute(me:mutable; Compute(me:mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d; aPresentation: Presentation from Prs3d;
aShape : Shape from TopoDS) aShape : Shape from TopoDS)
is private; is private;

@ -41,7 +41,7 @@ is
Create (theSelObject : SelectableObject; Create (theSelObject : SelectableObject;
theSelMode : DimensionSelectionMode from AIS; theSelMode : DimensionSelectionMode from AIS;
thePriority : Integer from Standard = 0) thePriority : Integer from Standard = 0)
returns mutable DimensionOwner from AIS; returns DimensionOwner from AIS;
---Purpose: ---Purpose:
-- Initializes the dimension owner, theSO, and attributes it -- Initializes the dimension owner, theSO, and attributes it
-- the priority, thePriority. -- the priority, thePriority.

@ -64,7 +64,7 @@ uses
Ax2 from gp Ax2 from gp
is is
Create returns mutable Drawer from AIS; Create returns Drawer from AIS;
---Purpose: ---Purpose:
-- Constructs an empty attribute management framework. -- Constructs an empty attribute management framework.
TypeOfDeflection(me) returns TypeOfDeflection from Aspect TypeOfDeflection(me) returns TypeOfDeflection from Aspect
@ -247,7 +247,7 @@ is
-- --
-- Attributes for the U Isoparametric lines of patches. -- Attributes for the U Isoparametric lines of patches.
-- --
UIsoAspect (me:mutable) returns mutable IsoAspect from Prs3d UIsoAspect (me:mutable) returns IsoAspect from Prs3d
---Purpose: Defines the attributes which are used when drawing an ---Purpose: Defines the attributes which are used when drawing an
-- U isoparametric curve of a face. Defines the number -- U isoparametric curve of a face. Defines the number
-- of U isoparametric curves to be drawn for a single face. -- of U isoparametric curves to be drawn for a single face.
@ -268,7 +268,7 @@ is
-- Attributes for the V Isoparametric line of patches. -- Attributes for the V Isoparametric line of patches.
VIsoAspect (me:mutable) returns mutable IsoAspect from Prs3d VIsoAspect (me:mutable) returns IsoAspect from Prs3d
---Purpose: Defines the attributes which are used when drawing an ---Purpose: Defines the attributes which are used when drawing an
-- V isoparametric curve of a face. Defines the number -- V isoparametric curve of a face. Defines the number
-- of V isoparametric curves to be drawn for a single face. -- of V isoparametric curves to be drawn for a single face.
@ -286,7 +286,7 @@ is
-- Attributes for the free boundaries -- Attributes for the free boundaries
FreeBoundaryAspect (me:mutable) returns mutable LineAspect from Prs3d FreeBoundaryAspect (me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with ---Purpose: Returns a link with
-- Prs3d_Drawer_FreeBoundaryAspect. Stores the -- Prs3d_Drawer_FreeBoundaryAspect. Stores the
-- values for presentation of free boundaries, in other -- values for presentation of free boundaries, in other
@ -305,7 +305,7 @@ is
-- Attributes for the wires -- Attributes for the wires
WireAspect (me:mutable) returns mutable LineAspect from Prs3d WireAspect (me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with Prs3d_Drawer_WireAspect. ---Purpose: Returns a link with Prs3d_Drawer_WireAspect.
-- This method provides wire aspect settings. -- This method provides wire aspect settings.
-- The LineAspect for wires can be edited. The default values are: -- The LineAspect for wires can be edited. The default values are:
@ -336,7 +336,7 @@ is
-- Attributes for the unfree boundaries -- Attributes for the unfree boundaries
UnFreeBoundaryAspect (me:mutable) returns mutable LineAspect from Prs3d UnFreeBoundaryAspect (me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with ---Purpose: Returns a link with
-- Prs3d_Drawer_UnFreeBoundaryAspect, which -- Prs3d_Drawer_UnFreeBoundaryAspect, which
-- provides settings for shared boundary line aspects. -- provides settings for shared boundary line aspects.
@ -360,7 +360,7 @@ is
-- Attributes for the lines. -- Attributes for the lines.
-- --
LineAspect(me:mutable) returns mutable LineAspect from Prs3d LineAspect(me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with Prs3d_Drawer_LineAspect, ---Purpose: Returns a link with Prs3d_Drawer_LineAspect,
-- which provides settings for line aspects. These -- which provides settings for line aspects. These
-- settings can be edited. The default values are: -- settings can be edited. The default values are:
@ -379,7 +379,7 @@ is
HasTextAspect(me) returns Boolean from Standard HasTextAspect(me) returns Boolean from Standard
is static; is static;
---C++: inline ---C++: inline
TextAspect(me:mutable) returns mutable TextAspect from Prs3d TextAspect(me:mutable) returns TextAspect from Prs3d
-- --
-- Color: Quantity_NOC_YELLOW -- Color: Quantity_NOC_YELLOW
is redefined static; is redefined static;
@ -389,14 +389,14 @@ is
-- each line is enabled. The default setting is False. -- each line is enabled. The default setting is False.
is redefined static; is redefined static;
ArrowAspect(me:mutable) returns mutable ArrowAspect from Prs3d ArrowAspect(me:mutable) returns ArrowAspect from Prs3d
is redefined static; is redefined static;
-- -- -- --
-- Attributes for the points -- Attributes for the points
-- --
PointAspect(me:mutable) returns mutable PointAspect from Prs3d PointAspect(me:mutable) returns PointAspect from Prs3d
---Purpose: Returns the point aspect setting. The default values ---Purpose: Returns the point aspect setting. The default values
-- are: Color: Quantity_NOC_YELLOW -- are: Color: Quantity_NOC_YELLOW
-- Type of marker: Aspect_TOM_PLUS -- Type of marker: Aspect_TOM_PLUS
@ -413,7 +413,7 @@ is
-- Attributes for the faces: -- Attributes for the faces:
-- --
ShadingAspect (me:mutable) returns mutable ShadingAspect from Prs3d ShadingAspect (me:mutable) returns ShadingAspect from Prs3d
---Purpose: ---Purpose:
-- Returns a link with Prs3d_Drawer_ShadingAspect, -- Returns a link with Prs3d_Drawer_ShadingAspect,
-- which provides settings for shading aspects. -- which provides settings for shading aspects.
@ -443,7 +443,7 @@ is
-- By default the hidden lines are not drawn. -- By default the hidden lines are not drawn.
is redefined static; is redefined static;
HiddenLineAspect(me:mutable) returns mutable LineAspect from Prs3d HiddenLineAspect(me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with ---Purpose: Returns a link with
-- Prs3d_Drawer_HiddenLineAspect, which provides -- Prs3d_Drawer_HiddenLineAspect, which provides
-- settings for hidden line aspects. -- settings for hidden line aspects.
@ -454,7 +454,7 @@ is
is redefined static; is redefined static;
SeenLineAspect(me:mutable) returns mutable LineAspect from Prs3d SeenLineAspect(me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with ---Purpose: Returns a link with
-- Prs3d_Drawer_SeenLineAspect, which provides -- Prs3d_Drawer_SeenLineAspect, which provides
-- settings for seen line aspects. -- settings for seen line aspects.
@ -468,14 +468,14 @@ is
HasPlaneAspect(me) returns Boolean from Standard; HasPlaneAspect(me) returns Boolean from Standard;
---C++: inline ---C++: inline
PlaneAspect(me:mutable) returns mutable PlaneAspect from Prs3d PlaneAspect(me:mutable) returns PlaneAspect from Prs3d
is redefined static; is redefined static;
---Purpose: ---Purpose:
-- Returns a link with Prs3d_Drawer_PlaneAspect. -- Returns a link with Prs3d_Drawer_PlaneAspect.
-- This method provides settings for the appearance of planes. -- This method provides settings for the appearance of planes.
VectorAspect(me:mutable) returns mutable LineAspect from Prs3d VectorAspect(me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with Prs3d_Drawer_VectorAspect, ---Purpose: Returns a link with Prs3d_Drawer_VectorAspect,
-- which provides settings for the appearance of vectors. -- which provides settings for the appearance of vectors.
-- These settings can be edited. The default values are: -- These settings can be edited. The default values are:
@ -504,7 +504,7 @@ is
-- visualization instead of the one set in link. -- visualization instead of the one set in link.
-- theAspect is the line aspect that determines the look of the face boundaries. -- theAspect is the line aspect that determines the look of the face boundaries.
FaceBoundaryAspect (me : mutable) returns mutable LineAspect from Prs3d FaceBoundaryAspect (me : mutable) returns LineAspect from Prs3d
is redefined static; is redefined static;
---Purpose: Returns line aspect of face boundaries. ---Purpose: Returns line aspect of face boundaries.
@ -526,7 +526,7 @@ is
HasDatumAspect(me) returns Boolean from Standard; HasDatumAspect(me) returns Boolean from Standard;
---C++: inline ---C++: inline
DatumAspect(me:mutable) returns mutable DatumAspect from Prs3d DatumAspect(me:mutable) returns DatumAspect from Prs3d
---Purpose: Returns a link with Prs3d_Drawer_DatumAspect, ---Purpose: Returns a link with Prs3d_Drawer_DatumAspect,
-- which provides settings for the appearance of datums. -- which provides settings for the appearance of datums.
-- These settings can be edited. The default values for -- These settings can be edited. The default values for
@ -539,7 +539,7 @@ is
-- Attributes for the presentation of a dimensions. -- Attributes for the presentation of a dimensions.
-- --
DimensionAspect (me : mutable) returns mutable DimensionAspect from Prs3d is redefined static; DimensionAspect (me : mutable) returns DimensionAspect from Prs3d is redefined static;
---Purpose: Returns a link with Prs3d_Drawer_DimensionAspect, ---Purpose: Returns a link with Prs3d_Drawer_DimensionAspect,
-- which provides settings for the appearance of dimensions. -- which provides settings for the appearance of dimensions.
@ -577,7 +577,7 @@ is
-- Attributes for the sections -- Attributes for the sections
SectionAspect (me:mutable) returns mutable LineAspect from Prs3d SectionAspect (me:mutable) returns LineAspect from Prs3d
---Purpose: Returns a link with Prs3d_Drawer_SectionAspect, ---Purpose: Returns a link with Prs3d_Drawer_SectionAspect,
-- which provides settings for wires which highlight sections. -- which provides settings for wires which highlight sections.
-- The LineAspect for the wire can be edited. -- The LineAspect for the wire can be edited.

@ -51,7 +51,7 @@ is
-- aShape3, aShape4 and the plane aPlane. -- aShape3, aShape4 and the plane aPlane.
-- The distance is the length of a projection from the -- The distance is the length of a projection from the
-- shape to the plane. -- shape to the plane.
returns mutable EqualDistanceRelation from AIS; returns EqualDistanceRelation from AIS;
SetShape3( me: mutable; aShape : Shape from TopoDS ) SetShape3( me: mutable; aShape : Shape from TopoDS )
is static; is static;
@ -87,19 +87,19 @@ is
Compute( me : mutable; Compute( me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0 ) aMode : Integer from Standard= 0 )
is redefined static private; is redefined static private;
Compute( me : mutable; Compute( me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation : mutable Presentation from Prs3d ) aPresentation : Presentation from Prs3d )
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: Computes the presentation according to a point of view ---Purpose: Computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -112,12 +112,12 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection( me : mutable; ComputeSelection( me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is private; is private;
-- ota -- begin -- ota -- begin
ComputeTwoEdgesLength (myclass; ComputeTwoEdgesLength (myclass;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aDrawer : Drawer from AIS; aDrawer : Drawer from AIS;
ArrowSize : Real from Standard; ArrowSize : Real from Standard;
FirstEdge : Edge from TopoDS; FirstEdge : Edge from TopoDS;
@ -137,7 +137,7 @@ is
-- are the returned extreme points of the interval. -- are the returned extreme points of the interval.
ComputeTwoVerticesLength(myclass; ComputeTwoVerticesLength(myclass;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aDrawer : Drawer from AIS; aDrawer : Drawer from AIS;
ArrowSize : Real from Standard; ArrowSize : Real from Standard;
FirstVertex : Vertex from TopoDS; FirstVertex : Vertex from TopoDS;
@ -157,7 +157,7 @@ is
-- SecondAttach are the returned extreme points of the interval. -- SecondAttach are the returned extreme points of the interval.
ComputeOneEdgeOneVertexLength(myclass; ComputeOneEdgeOneVertexLength(myclass;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aDrawer : Drawer from AIS; aDrawer : Drawer from AIS;
ArrowSize : Real from Standard; ArrowSize : Real from Standard;
FirstShape : Shape from TopoDS; FirstShape : Shape from TopoDS;

@ -35,25 +35,25 @@ is
---Purpose: Creates equal relation of two arc's radiuses. ---Purpose: Creates equal relation of two arc's radiuses.
-- If one of edges is not in the given plane, -- If one of edges is not in the given plane,
-- the presentation method projects it onto the plane. -- the presentation method projects it onto the plane.
returns mutable EqualRadiusRelation from AIS; returns EqualRadiusRelation from AIS;
-- Methods from PresentableObject -- Methods from PresentableObject
Compute( me : mutable; Compute( me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0 ) aMode : Integer from Standard= 0 )
is redefined static private; is redefined static private;
Compute( me : mutable; Compute( me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation : mutable Presentation from Prs3d ) aPresentation : Presentation from Prs3d )
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -66,7 +66,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection( me : mutable; ComputeSelection( me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is private; is private;

@ -40,14 +40,14 @@ uses
is is
Create(ExclusionFlagOn:Boolean from Standard = Standard_True) Create(ExclusionFlagOn:Boolean from Standard = Standard_True)
returns mutable ExclusionFilter from AIS; returns ExclusionFilter from AIS;
---Purpose: Constructs an empty exclusion filter object defined by ---Purpose: Constructs an empty exclusion filter object defined by
-- the flag setting ExclusionFlagOn. -- the flag setting ExclusionFlagOn.
-- By default, the flag is set to true. -- By default, the flag is set to true.
Create(TypeToExclude : KindOfInteractive from AIS; Create(TypeToExclude : KindOfInteractive from AIS;
ExclusionFlagOn : Boolean from Standard = Standard_True) ExclusionFlagOn : Boolean from Standard = Standard_True)
returns mutable ExclusionFilter from AIS; returns ExclusionFilter from AIS;
---Purpose: All the AIS objects of <TypeToExclude> ---Purpose: All the AIS objects of <TypeToExclude>
-- Will be rejected by the IsOk Method. -- Will be rejected by the IsOk Method.
@ -55,7 +55,7 @@ is
Create(TypeToExclude : KindOfInteractive from AIS; Create(TypeToExclude : KindOfInteractive from AIS;
SignatureInType :Integer from Standard ; SignatureInType :Integer from Standard ;
ExclusionFlagOn : Boolean from Standard = Standard_True) ExclusionFlagOn : Boolean from Standard = Standard_True)
returns mutable ExclusionFilter from AIS; returns ExclusionFilter from AIS;
---Purpose: Constructs an exclusion filter object defined by the ---Purpose: Constructs an exclusion filter object defined by the
-- enumeration value TypeToExclude, the signature -- enumeration value TypeToExclude, the signature
-- SignatureInType, and the flag setting ExclusionFlagOn. -- SignatureInType, and the flag setting ExclusionFlagOn.

@ -49,7 +49,7 @@ is
---Purpose: initializes the vertex aShape, the ---Purpose: initializes the vertex aShape, the
-- plane aPlane and the wire aWire, which connects -- plane aPlane and the wire aWire, which connects
-- the two vertices in a fixed relation. -- the two vertices in a fixed relation.
returns mutable FixRelation from AIS; returns FixRelation from AIS;
Create (aShape : Shape from TopoDS; Create (aShape : Shape from TopoDS;
aPlane : Plane from Geom; aPlane : Plane from Geom;
@ -60,11 +60,11 @@ is
-- plane aPlane and the wire aWire, the position -- plane aPlane and the wire aWire, the position
-- aPosition, the arrow size anArrowSize and the -- aPosition, the arrow size anArrowSize and the
-- wire aWire, which connects the two vertices in a fixed relation. -- wire aWire, which connects the two vertices in a fixed relation.
returns mutable FixRelation from AIS; returns FixRelation from AIS;
Create (aShape : Shape from TopoDS; Create (aShape : Shape from TopoDS;
aPlane : Plane from Geom) aPlane : Plane from Geom)
---Purpose: initializes the edge aShape and the plane aPlane. ---Purpose: initializes the edge aShape and the plane aPlane.
returns mutable FixRelation from AIS; returns FixRelation from AIS;
Create (aShape : Shape from TopoDS; Create (aShape : Shape from TopoDS;
aPlane : Plane from Geom; aPlane : Plane from Geom;
@ -74,7 +74,7 @@ is
-- plane aPlane, the position aPosition and the arrow -- plane aPlane, the position aPosition and the arrow
-- size anArrowSize. -- size anArrowSize.
returns mutable FixRelation from AIS; returns FixRelation from AIS;
Wire(me: mutable) returns Wire from TopoDS Wire(me: mutable) returns Wire from TopoDS
is static; is static;
@ -95,19 +95,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -120,7 +120,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;

@ -31,14 +31,14 @@ uses
is is
Create returns mutable GlobalStatus from AIS; Create returns GlobalStatus from AIS;
Create (aStat : DisplayStatus from AIS; Create (aStat : DisplayStatus from AIS;
aDispMode,aSelMode: Integer from Standard; aDispMode,aSelMode: Integer from Standard;
ishilighted : Boolean from Standard=Standard_False; ishilighted : Boolean from Standard=Standard_False;
TheHiCol : NameOfColor from Quantity = Quantity_NOC_WHITE; TheHiCol : NameOfColor from Quantity = Quantity_NOC_WHITE;
aLayerIndex : Integer from Standard = 0) aLayerIndex : Integer from Standard = 0)
returns mutable GlobalStatus from AIS; returns GlobalStatus from AIS;
---Category: Modifications. ---Category: Modifications.

@ -41,7 +41,7 @@ is
Create(FirstShape : Shape from TopoDS; Create(FirstShape : Shape from TopoDS;
SecondShape : Shape from TopoDS; SecondShape : Shape from TopoDS;
aPlane : Plane from Geom) aPlane : Plane from Geom)
returns mutable IdenticRelation from AIS; returns IdenticRelation from AIS;
---Purpose: ---Purpose:
-- Initializes the relation of identity between the two -- Initializes the relation of identity between the two
-- entities, FirstShape and SecondShape. The plane -- entities, FirstShape and SecondShape. The plane
@ -58,19 +58,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined private; is redefined private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -83,7 +83,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;
@ -92,15 +92,15 @@ is
-- --
ComputeOneEdgeOVertexPresentation(me: mutable; ComputeOneEdgeOVertexPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeTwoEdgesPresentation(me: mutable; ComputeTwoEdgesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeTwoLinesPresentation(me: mutable; ComputeTwoLinesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aLin : Line from Geom; aLin : Line from Geom;
Pnt1On1 : in out Pnt from gp; Pnt1On1 : in out Pnt from gp;
Pnt2On1 : in out Pnt from gp; Pnt2On1 : in out Pnt from gp;
@ -111,7 +111,7 @@ is
is private; is private;
ComputeTwoCirclesPresentation(me: mutable; ComputeTwoCirclesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aCircle : Circle from Geom; aCircle : Circle from Geom;
Pnt1On1 : Pnt from gp; Pnt1On1 : Pnt from gp;
Pnt2On1 : Pnt from gp; Pnt2On1 : Pnt from gp;
@ -146,7 +146,7 @@ is
-- jfa 10/10/2000 -- jfa 10/10/2000
ComputeTwoEllipsesPresentation(me: mutable; ComputeTwoEllipsesPresentation(me: mutable;
aPrs : mutable Presentation from Prs3d; aPrs : Presentation from Prs3d;
anEll : Ellipse from Geom; anEll : Ellipse from Geom;
Pnt1On1 : Pnt from gp; Pnt1On1 : Pnt from gp;
Pnt2On1 : Pnt from gp; Pnt2On1 : Pnt from gp;
@ -181,7 +181,7 @@ is
-- jfa 18/10/2000 end -- jfa 18/10/2000 end
ComputeTwoVerticesPresentation(me: mutable; ComputeTwoVerticesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeSegSize(me) ComputeSegSize(me)

@ -142,7 +142,7 @@ uses
is is
Create(MainViewer:Viewer from V3d) Create(MainViewer:Viewer from V3d)
returns mutable InteractiveContext from AIS; returns InteractiveContext from AIS;
---Purpose: ---Purpose:
-- Constructs the interactive context object defined by -- Constructs the interactive context object defined by
-- the principal viewer MainViewer. -- the principal viewer MainViewer.
@ -1026,7 +1026,7 @@ is
-- of myDefaultDrawer ; -- of myDefaultDrawer ;
-- anAngle is in radian ; ( 1 deg < angle in deg < 20 deg) -- anAngle is in radian ; ( 1 deg < angle in deg < 20 deg)
HiddenLineAspect(me) returns mutable LineAspect from Prs3d HiddenLineAspect(me) returns LineAspect from Prs3d
---Purpose: Initializes hidden line aspect in the default drawing tool, or Drawer. ---Purpose: Initializes hidden line aspect in the default drawing tool, or Drawer.
-- The default values are: -- The default values are:
-- Color: Quantity_NOC_YELLOW -- Color: Quantity_NOC_YELLOW

@ -37,30 +37,30 @@ uses
is is
Create(aLine : Line from Geom) Create(aLine : Line from Geom)
returns mutable Line from AIS; returns Line from AIS;
---Purpose: Initializes the line aLine. ---Purpose: Initializes the line aLine.
Create(aStartPoint : Point from Geom; Create(aStartPoint : Point from Geom;
aEndPoint : Point from Geom) aEndPoint : Point from Geom)
returns mutable Line from AIS; returns Line from AIS;
---Purpose: Initializes a starting point aStartPoint ---Purpose: Initializes a starting point aStartPoint
-- and a finishing point aEndPoint for the line. -- and a finishing point aEndPoint for the line.
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -73,7 +73,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
@ -127,19 +127,19 @@ is
ComputeInfiniteLine(me: mutable; ComputeInfiniteLine(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeSegmentLine(me: mutable; ComputeSegmentLine(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeInfiniteLineSelection(me: mutable; ComputeInfiniteLineSelection(me: mutable;
aSelection : mutable Selection from SelectMgr) aSelection : Selection from SelectMgr)
is private; is private;
ComputeSegmentLineSelection(me: mutable; ComputeSegmentLineSelection(me: mutable;
aSelection : mutable Selection from SelectMgr) aSelection : Selection from SelectMgr)
is private; is private;
fields fields

@ -81,7 +81,7 @@ uses
is is
Create returns mutable LocalContext from AIS; Create returns LocalContext from AIS;
Create (aCtx : InteractiveContext from AIS; Create (aCtx : InteractiveContext from AIS;
@ -90,7 +90,7 @@ is
AcceptStandardModes : Boolean from Standard=Standard_True; AcceptStandardModes : Boolean from Standard=Standard_True;
AcceptErase : Boolean from Standard= Standard_False; AcceptErase : Boolean from Standard= Standard_False;
UseBothViewers : Boolean from Standard= Standard_False) UseBothViewers : Boolean from Standard= Standard_False)
returns mutable LocalContext from AIS; returns LocalContext from AIS;
---Purpose: Constructor By Default, the displayed objects are ---Purpose: Constructor By Default, the displayed objects are
-- automatically loaded. -- automatically loaded.

@ -29,7 +29,7 @@ is
HilightMode : Integer from Standard = 0; HilightMode : Integer from Standard = 0;
SubIntensity : Boolean from Standard = 0; SubIntensity : Boolean from Standard = 0;
TheHiCol : NameOfColor from Quantity = Quantity_NOC_WHITE) TheHiCol : NameOfColor from Quantity = Quantity_NOC_WHITE)
returns mutable LocalStatus from AIS; returns LocalStatus from AIS;

@ -50,7 +50,7 @@ is
---Purpose: Max Ellipse radius dimension ---Purpose: Max Ellipse radius dimension
-- Shape can be edge , planar face or cylindrical face -- Shape can be edge , planar face or cylindrical face
-- --
returns mutable MaxRadiusDimension from AIS; returns MaxRadiusDimension from AIS;
Create (aShape : Shape from TopoDS; Create (aShape : Shape from TopoDS;
aVal : Real from Standard; aVal : Real from Standard;
@ -61,7 +61,7 @@ is
---Purpose: Max Ellipse radius dimension with position ---Purpose: Max Ellipse radius dimension with position
-- Shape can be edge , planar face or cylindrical face -- Shape can be edge , planar face or cylindrical face
-- --
returns mutable MaxRadiusDimension from AIS; returns MaxRadiusDimension from AIS;
@ -70,19 +70,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined private; is redefined private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -95,7 +95,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;
@ -104,11 +104,11 @@ is
-- --
ComputeEllipse(me: mutable; ComputeEllipse(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeArcOfEllipse(me: mutable; ComputeArcOfEllipse(me: mutable;
aPresentation : mutable Presentation from Prs3d ) aPresentation : Presentation from Prs3d )
is private; is private;
fields fields

@ -37,7 +37,7 @@ is
FirstShape : Shape from TopoDS; FirstShape : Shape from TopoDS;
SecondShape : Shape from TopoDS; SecondShape : Shape from TopoDS;
aPlane : Plane from Geom) aPlane : Plane from Geom)
returns mutable MidPointRelation from AIS; returns MidPointRelation from AIS;
IsMovable(me) returns Boolean from Standard IsMovable(me) returns Boolean from Standard
---C++: inline ---C++: inline
@ -54,19 +54,19 @@ is
-- Methods from PresentableObject -- Methods from PresentableObject
Compute(me: mutable; Compute(me: mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me: mutable; Compute(me: mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me: mutable; Compute(me: mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: Computes the presentation according to a point of view ---Purpose: Computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -78,17 +78,17 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
-- Computation private methods -- Computation private methods
ComputeFaceFromPnt(me: mutable; aprs : mutable Presentation from Prs3d; first : Boolean from Standard) ComputeFaceFromPnt(me: mutable; aprs : Presentation from Prs3d; first : Boolean from Standard)
is private; is private;
ComputeEdgeFromPnt(me: mutable; aprs : mutable Presentation from Prs3d; first : Boolean from Standard) ComputeEdgeFromPnt(me: mutable; aprs : Presentation from Prs3d; first : Boolean from Standard)
is private; is private;
ComputeVertexFromPnt(me: mutable; aprs : mutable Presentation from Prs3d; first : Boolean from Standard) ComputeVertexFromPnt(me: mutable; aprs : Presentation from Prs3d; first : Boolean from Standard)
is private; is private;

@ -51,7 +51,7 @@ is
---Purpose: Max Ellipse radius dimension ---Purpose: Max Ellipse radius dimension
-- Shape can be edge , planar face or cylindrical face -- Shape can be edge , planar face or cylindrical face
-- --
returns mutable MinRadiusDimension from AIS; returns MinRadiusDimension from AIS;
Create (aShape : Shape from TopoDS; Create (aShape : Shape from TopoDS;
aVal : Real from Standard; aVal : Real from Standard;
@ -62,7 +62,7 @@ is
---Purpose: Max Ellipse radius dimension with position ---Purpose: Max Ellipse radius dimension with position
-- Shape can be edge , planar face or cylindrical face -- Shape can be edge , planar face or cylindrical face
-- --
returns mutable MinRadiusDimension from AIS; returns MinRadiusDimension from AIS;
@ -71,19 +71,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined private; is redefined private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -96,7 +96,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;
@ -105,11 +105,11 @@ is
-- --
ComputeEllipse(me: mutable; ComputeEllipse(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeArcOfEllipse(me: mutable; ComputeArcOfEllipse(me: mutable;
aPresentation : mutable Presentation from Prs3d ) aPresentation : Presentation from Prs3d )
is private; is private;
fields fields

@ -43,7 +43,7 @@ is
Create (aTypeOfPresentation3d: TypeOfPresentation3d from PrsMgr = PrsMgr_TOP_AllView) Create (aTypeOfPresentation3d: TypeOfPresentation3d from PrsMgr = PrsMgr_TOP_AllView)
returns mutable MultipleConnectedInteractive from AIS; returns MultipleConnectedInteractive from AIS;
---Purpose: Initializes the Interactive Object with multiple ---Purpose: Initializes the Interactive Object with multiple
-- presentation connections. If aTypeOfPresentation3d -- presentation connections. If aTypeOfPresentation3d
-- does not have the affectation PrsMgr_TOP_AllView, -- does not have the affectation PrsMgr_TOP_AllView,
@ -79,7 +79,7 @@ is
Compute(me:mutable; Compute(me:mutable;
aPresentationManager : PresentationManager3d from PrsMgr; aPresentationManager : PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
---Level: Internal ---Level: Internal
---Purpose: this method is redefined virtual; ---Purpose: this method is redefined virtual;
@ -93,7 +93,7 @@ is
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -105,10 +105,10 @@ is
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined ; is redefined ;
ComputeSelection(me:mutable; aSelection :mutable Selection from SelectMgr; ComputeSelection(me:mutable; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined virtual private; is redefined virtual private;

@ -42,7 +42,7 @@ raises
is is
Create (aShape : Shape from TopoDS) Create (aShape : Shape from TopoDS)
returns mutable MultipleConnectedShape from AIS; returns MultipleConnectedShape from AIS;
---Purpose: Initializes the shape aShape, a multiple connected ---Purpose: Initializes the shape aShape, a multiple connected
-- Interactive Object grouping different -- Interactive Object grouping different
-- projector-dependent representations of an entity. -- projector-dependent representations of an entity.
@ -68,16 +68,16 @@ is
Compute(me:mutable; Compute(me:mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined virtual protected; is redefined virtual protected;
Compute(me:mutable; Compute(me:mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined virtual protected; is redefined virtual protected;
ComputeSelection(me:mutable; aSelection :mutable Selection from SelectMgr; ComputeSelection(me:mutable; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined virtual protected; is redefined virtual protected;
@ -85,13 +85,13 @@ is
Compute(me:mutable; Compute(me:mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d; aPresentation: Presentation from Prs3d;
aShape : Shape from TopoDS) aShape : Shape from TopoDS)
is private; is private;
Compute(me:mutable; Compute(me:mutable;
aPresentationManager : PresentationManager3d from PrsMgr; aPresentationManager : PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
---Level: Internal ---Level: Internal
---Purpose: this method is redefined virtual; ---Purpose: this method is redefined virtual;

@ -39,26 +39,26 @@ is
Create (FistShape, SecondShape : Shape from TopoDS; Create (FistShape, SecondShape : Shape from TopoDS;
aVal : Real from Standard; aVal : Real from Standard;
aText : ExtendedString from TCollection) aText : ExtendedString from TCollection)
returns mutable OffsetDimension from AIS; returns OffsetDimension from AIS;
---Purpose: Constructs the offset display object defined by the ---Purpose: Constructs the offset display object defined by the
-- first shape aFShape, the second shape aSShape, the -- first shape aFShape, the second shape aSShape, the
-- dimension aVal, and the text aText. -- dimension aVal, and the text aText.
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined private; is redefined private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -71,7 +71,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;
@ -94,17 +94,17 @@ is
-- selection to a relative position. -- selection to a relative position.
ComputeTwoFacesOffset(me: mutable; ComputeTwoFacesOffset(me: mutable;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aTrsf : Trsf from gp) aTrsf : Trsf from gp)
is private; is private;
ComputeTwoAxesOffset(me: mutable; ComputeTwoAxesOffset(me: mutable;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aTrsf : Trsf from gp) aTrsf : Trsf from gp)
is private; is private;
ComputeAxeFaceOffset(me: mutable; ComputeAxeFaceOffset(me: mutable;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aTrsf : Trsf from gp) aTrsf : Trsf from gp)
is private; is private;

@ -38,7 +38,7 @@ is
---Purpose: Constructs an object to display parallel constraints. ---Purpose: Constructs an object to display parallel constraints.
-- This object is defined by the first shape aFShape and -- This object is defined by the first shape aFShape and
-- the second shape aSShape and the plane aPlane. -- the second shape aSShape and the plane aPlane.
returns mutable ParallelRelation from AIS; returns ParallelRelation from AIS;
Create (aFShape : Shape from TopoDS; Create (aFShape : Shape from TopoDS;
aSShape : Shape from TopoDS; aSShape : Shape from TopoDS;
@ -51,7 +51,7 @@ is
-- the second shape aSShape the plane aPlane, the -- the second shape aSShape the plane aPlane, the
-- position aPosition, the type of arrow, aSymbolPrs and -- position aPosition, the type of arrow, aSymbolPrs and
-- its size anArrowSize. -- its size anArrowSize.
returns mutable ParallelRelation from AIS; returns ParallelRelation from AIS;
IsMovable(me) returns Boolean from Standard IsMovable(me) returns Boolean from Standard
---Purpose: Returns true if the parallelism is movable. ---Purpose: Returns true if the parallelism is movable.
@ -62,19 +62,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -87,7 +87,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
@ -97,11 +97,11 @@ is
-- --
ComputeTwoFacesParallel(me: mutable; ComputeTwoFacesParallel(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeTwoEdgesParallel(me: mutable; ComputeTwoEdgesParallel(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;

@ -39,7 +39,7 @@ is
-- aPlane is the plane of reference to show and test the -- aPlane is the plane of reference to show and test the
-- perpendicular relation between two shapes, at least -- perpendicular relation between two shapes, at least
-- one of which has a revolved surface. -- one of which has a revolved surface.
returns mutable PerpendicularRelation from AIS; returns PerpendicularRelation from AIS;
Create (aFShape : Shape from TopoDS; Create (aFShape : Shape from TopoDS;
aSShape : Shape from TopoDS) aSShape : Shape from TopoDS)
@ -47,25 +47,25 @@ is
-- perpendicularity on shapes. -- perpendicularity on shapes.
-- This object is defined by a first shape aFShape and a -- This object is defined by a first shape aFShape and a
-- second shape aSShape. -- second shape aSShape.
returns mutable PerpendicularRelation from AIS; returns PerpendicularRelation from AIS;
-- -- Methods from PresentableObject -- -- Methods from PresentableObject
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -78,7 +78,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
@ -87,11 +87,11 @@ is
-- --
ComputeTwoFacesPerpendicular(me: mutable; ComputeTwoFacesPerpendicular(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeTwoEdgesPerpendicular(me: mutable; ComputeTwoEdgesPerpendicular(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;

@ -44,7 +44,7 @@ uses
is is
Create(aComponent : Plane from Geom; Create(aComponent : Plane from Geom;
aCurrentMode : Boolean from Standard = Standard_False) aCurrentMode : Boolean from Standard = Standard_False)
returns mutable Plane from AIS; returns Plane from AIS;
---Purpose: initializes the plane aComponent. If ---Purpose: initializes the plane aComponent. If
-- the mode aCurrentMode equals true, the drawing -- the mode aCurrentMode equals true, the drawing
-- tool, "Drawer" is not initialized. -- tool, "Drawer" is not initialized.
@ -52,7 +52,7 @@ is
Create(aComponent : Plane from Geom; Create(aComponent : Plane from Geom;
aCenter : Pnt from gp; aCenter : Pnt from gp;
aCurrentMode : Boolean from Standard = Standard_False) aCurrentMode : Boolean from Standard = Standard_False)
returns mutable Plane from AIS; returns Plane from AIS;
--- Purpose: initializes the plane aComponent and --- Purpose: initializes the plane aComponent and
-- the point aCenter. If the mode aCurrentMode -- the point aCenter. If the mode aCurrentMode
-- equals true, the drawing tool, "Drawer" is not -- equals true, the drawing tool, "Drawer" is not
@ -64,7 +64,7 @@ is
aPmin : Pnt from gp; aPmin : Pnt from gp;
aPmax : Pnt from gp; aPmax : Pnt from gp;
aCurrentMode : Boolean from Standard = Standard_False) aCurrentMode : Boolean from Standard = Standard_False)
returns mutable Plane from AIS; returns Plane from AIS;
---Purpose: initializes the plane aComponent, the ---Purpose: initializes the plane aComponent, the
-- point aCenter, and the minimum and maximum -- point aCenter, and the minimum and maximum
-- points, aPmin and aPmax. If the mode -- points, aPmin and aPmax. If the mode
@ -73,7 +73,7 @@ is
Create(aComponent : Axis2Placement from Geom; Create(aComponent : Axis2Placement from Geom;
aPlaneType : TypeOfPlane from AIS; aPlaneType : TypeOfPlane from AIS;
aCurrentMode : Boolean from Standard = Standard_False) aCurrentMode : Boolean from Standard = Standard_False)
returns mutable Plane from AIS; returns Plane from AIS;
---Category: Size Modifications... ---Category: Size Modifications...
@ -197,19 +197,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined virtual private; is redefined virtual private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined virtual private; is redefined virtual private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -222,7 +222,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection (me : mutable; ComputeSelection (me : mutable;
theSelection : mutable Selection from SelectMgr; theSelection : Selection from SelectMgr;
theMode : Integer from Standard) is redefined virtual; theMode : Integer from Standard) is redefined virtual;
-- Methods from InteractiveObject -- Methods from InteractiveObject

@ -60,7 +60,7 @@ uses
is is
Create(aPlane : Plane from Geom) Create(aPlane : Plane from Geom)
returns mutable PlaneTrihedron from AIS; returns PlaneTrihedron from AIS;
---Purpose: Initializes the plane aPlane. The plane trihedron is ---Purpose: Initializes the plane aPlane. The plane trihedron is
-- constructed from this and an axis. -- constructed from this and an axis.
@ -94,20 +94,20 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined protected; is redefined protected;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -120,7 +120,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
-- Methods from InteractiveObject -- Methods from InteractiveObject

@ -38,7 +38,7 @@ uses
is is
Create(aComponent : Point from Geom) Create(aComponent : Point from Geom)
returns mutable Point from AIS; returns Point from AIS;
---Purpose: ---Purpose:
-- Initializes the point aComponent from which the point -- Initializes the point aComponent from which the point
-- datum will be built. -- datum will be built.
@ -62,19 +62,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined virtual protected; is redefined virtual protected;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -87,7 +87,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard )is private; aMode : Integer from Standard )is private;
-- Methods from InteractiveObject -- Methods from InteractiveObject

@ -207,7 +207,7 @@ is
-- Returns true if the display mode aMode is accepted -- Returns true if the display mode aMode is accepted
-- for the Interactive Objects in the relation. -- for the Interactive Objects in the relation.
-- ComputeProjPresentation(me; -- ComputeProjPresentation(me;
-- aPres : mutable Presentation from Prs3d; -- aPres : Presentation from Prs3d;
-- Curve1 : Curve from Geom; -- Curve1 : Curve from Geom;
-- Curve2 : Curve from Geom; -- Curve2 : Curve from Geom;
-- FirstP1 : Pnt from gp; -- FirstP1 : Pnt from gp;
@ -221,7 +221,7 @@ is
--is protected; --is protected;
ComputeProjEdgePresentation(me; ComputeProjEdgePresentation(me;
aPres : mutable Presentation from Prs3d; aPres : Presentation from Prs3d;
anEdge : Edge from TopoDS; anEdge : Edge from TopoDS;
ProjCurve: Curve from Geom; ProjCurve: Curve from Geom;
FirstP : Pnt from gp; FirstP : Pnt from gp;
@ -238,7 +238,7 @@ is
-- type - aProjTOL and aCallTOL - and width of line, aWidth. -- type - aProjTOL and aCallTOL - and width of line, aWidth.
ComputeProjVertexPresentation(me; ComputeProjVertexPresentation(me;
aPres : mutable Presentation from Prs3d; aPres : Presentation from Prs3d;
aVertex : Vertex from TopoDS; aVertex : Vertex from TopoDS;
ProjPoint: Pnt from gp; ProjPoint: Pnt from gp;
aColor : NameOfColor from Quantity = Quantity_NOC_PURPLE; aColor : NameOfColor from Quantity = Quantity_NOC_PURPLE;

@ -37,7 +37,7 @@ raises NoSuchObject,MultiplyDefined from Standard,TypeMismatch from Standard
is is
Create(aName: CString from Standard) Create(aName: CString from Standard)
returns mutable Selection from AIS; returns Selection from AIS;
---Purpose: creates a new selection and make it current in the session. ---Purpose: creates a new selection and make it current in the session.
-- the selection will be accessible later through its name -- the selection will be accessible later through its name
-- to make it again current. -- to make it again current.
@ -72,7 +72,7 @@ is
Selection(myclass; aName: CString from Standard) Selection(myclass; aName: CString from Standard)
---Purpose: ---Purpose:
returns mutable Selection from AIS; returns Selection from AIS;
SetCurrentSelection(myclass; aName: CString from Standard) SetCurrentSelection(myclass; aName: CString from Standard)
---Purpose: ---Purpose:
@ -81,7 +81,7 @@ is
CurrentSelection(myclass) CurrentSelection(myclass)
---Purpose: ---Purpose:
returns mutable Selection from AIS; returns Selection from AIS;
ClearCurrentSelection(myclass); ClearCurrentSelection(myclass);
---Purpose: Clears selection. ---Purpose: Clears selection.

@ -69,7 +69,7 @@ uses
is is
Create(shap: Shape from TopoDS) Create(shap: Shape from TopoDS)
returns mutable Shape from AIS; returns Shape from AIS;
---Purpose: Initializes construction of the shape shap from wires, ---Purpose: Initializes construction of the shape shap from wires,
-- edges and vertices. -- edges and vertices.
@ -172,25 +172,25 @@ uses
Compute(me : mutable; Compute(me : mutable;
aPresentationManager : PresentationManager3d from PrsMgr; aPresentationManager : PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined virtual protected; is redefined virtual protected;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined virtual protected; is redefined virtual protected;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined virtual protected; is redefined virtual protected;
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined virtual protected; is redefined virtual protected;
@ -288,7 +288,7 @@ uses
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
ashape : Shape from TopoDS) is static private; ashape : Shape from TopoDS) is static private;
GetDeflection(myclass; aShape : Shape from TopoDS; GetDeflection(myclass; aShape : Shape from TopoDS;

@ -55,7 +55,7 @@ is
Create(aGivenKind : KindOfInteractive from AIS; Create(aGivenKind : KindOfInteractive from AIS;
aGivenSignature : Integer from Standard) aGivenSignature : Integer from Standard)
returns mutable SignatureFilter from AIS; returns SignatureFilter from AIS;
--- Purpose: Initializes the signature filter, adding the signature --- Purpose: Initializes the signature filter, adding the signature
-- specification, aGivenSignature, to that for type, -- specification, aGivenSignature, to that for type,
-- aGivenKind, in AIS_TypeFilter. -- aGivenKind, in AIS_TypeFilter.

@ -37,7 +37,7 @@ is
FirstShape : Shape from TopoDS; FirstShape : Shape from TopoDS;
SecondShape : Shape from TopoDS; SecondShape : Shape from TopoDS;
aPlane : Plane from Geom) aPlane : Plane from Geom)
returns mutable SymmetricRelation from AIS; returns SymmetricRelation from AIS;
--- Purpose: Constructs an object to display constraints of symmetricity. --- Purpose: Constructs an object to display constraints of symmetricity.
-- This object is defined by a tool aSymmTool, a first -- This object is defined by a tool aSymmTool, a first
-- shape FirstShape, a second shape SecondShape, and a plane aPlane. -- shape FirstShape, a second shape SecondShape, and a plane aPlane.
@ -70,19 +70,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -95,20 +95,20 @@ is
-- SymmetricRelation Methods from SelectableObject -- SymmetricRelation Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
-- --
-- Computation private methods -- Computation private methods
-- --
ComputeTwoFacesSymmetric(me: mutable; aprs : mutable Presentation from Prs3d) ComputeTwoFacesSymmetric(me: mutable; aprs : Presentation from Prs3d)
is private; is private;
ComputeTwoEdgesSymmetric(me: mutable; aprs : mutable Presentation from Prs3d) ComputeTwoEdgesSymmetric(me: mutable; aprs : Presentation from Prs3d)
is private; is private;
ComputeTwoVerticesSymmetric(me: mutable; aprs : mutable Presentation from Prs3d) ComputeTwoVerticesSymmetric(me: mutable; aprs : Presentation from Prs3d)
is private; is private;

@ -34,7 +34,7 @@ is
aPlane : Plane from Geom; aPlane : Plane from Geom;
anExternRef : Integer from Standard = 0) anExternRef : Integer from Standard = 0)
---Purpose: TwoFacesTangent or TwoEdgesTangent relation ---Purpose: TwoFacesTangent or TwoEdgesTangent relation
returns mutable TangentRelation from AIS; returns TangentRelation from AIS;
---Purpose: Constructs an object to display tangency constraints. ---Purpose: Constructs an object to display tangency constraints.
-- This object is defined by the first shape aFShape, the -- This object is defined by the first shape aFShape, the
-- second shape aSShape, the plane aPlane and the index anExternRef. -- second shape aSShape, the plane aPlane and the index anExternRef.
@ -61,19 +61,19 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard= 0) aMode : Integer from Standard= 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: computes the presentation according to a point of view ---Purpose: computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -86,7 +86,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
@ -95,11 +95,11 @@ is
-- --
ComputeTwoFacesTangent(me: mutable; ComputeTwoFacesTangent(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;
ComputeTwoEdgesTangent(me: mutable; ComputeTwoEdgesTangent(me: mutable;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is private; is private;

@ -39,14 +39,14 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager : PresentationManager3d from PrsMgr; aPresentationManager : PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined private; is redefined private;
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard) aMode : Integer from Standard)
is redefined private; is redefined private;
--- Empty implementation, does nothing --- Empty implementation, does nothing

@ -64,7 +64,7 @@ uses
is is
Create(aComponent : Axis2Placement from Geom) Create(aComponent : Axis2Placement from Geom)
returns mutable Trihedron from AIS; returns Trihedron from AIS;
--- Purpose: Initializes a trihedron entity. --- Purpose: Initializes a trihedron entity.
Component(me) returns any Axis2Placement from Geom Component(me) returns any Axis2Placement from Geom
@ -126,13 +126,13 @@ is
Compute(me : mutable; Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr; aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d; aPresentation : Presentation from Prs3d;
aMode : Integer from Standard = 0) aMode : Integer from Standard = 0)
is redefined static private; is redefined static private;
Compute(me:mutable; Compute(me:mutable;
aProjector: Projector from Prs3d; aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d) aPresentation: Presentation from Prs3d)
is redefined static private; is redefined static private;
@ -140,7 +140,7 @@ is
Compute(me : mutable; Compute(me : mutable;
aProjector : Projector from Prs3d; aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom; aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d) aPresentation : Presentation from Prs3d)
is redefined; is redefined;
---Purpose: Computes the presentation according to a point of view ---Purpose: Computes the presentation according to a point of view
-- given by <aProjector>. -- given by <aProjector>.
@ -159,7 +159,7 @@ is
-- Methods from SelectableObject -- Methods from SelectableObject
ComputeSelection(me : mutable; ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr; aSelection : Selection from SelectMgr;
aMode : Integer from Standard)is private; aMode : Integer from Standard)is private;
-- Methods from InteractiveObject -- Methods from InteractiveObject

@ -46,7 +46,7 @@ uses
is is
Create(aGivenKind : KindOfInteractive from AIS) Create(aGivenKind : KindOfInteractive from AIS)
returns mutable TypeFilter from AIS; returns TypeFilter from AIS;
---Purpose: Initializes filter for type, aGivenKind. ---Purpose: Initializes filter for type, aGivenKind.
IsOk (me;anobj : EntityOwner from SelectMgr) IsOk (me;anobj : EntityOwner from SelectMgr)
returns Boolean from Standard is redefined virtual; returns Boolean from Standard is redefined virtual;

@ -50,7 +50,7 @@ class MakeHeader from APIHeaderSection
---Purpose : Returns True if all data have been defined (see also ---Purpose : Returns True if all data have been defined (see also
-- HasFn, HasFs, HasFd) -- HasFn, HasFs, HasFd)
Apply (me; model : mutable StepModel); Apply (me; model : StepModel);
---Purpose : Creates an empty header for a new ---Purpose : Creates an empty header for a new
-- STEP model and allows the header fields to be completed. -- STEP model and allows the header fields to be completed.
@ -117,8 +117,7 @@ class MakeHeader from APIHeaderSection
FsValue (me) returns FileSchema from HeaderSection; FsValue (me) returns FileSchema from HeaderSection;
---Purpose: Returns the file_schema entity. Returns an empty entity if the file_schema entity is not initialized. ---Purpose: Returns the file_schema entity. Returns an empty entity if the file_schema entity is not initialized.
SetSchemaIdentifiers(me : in out; aSchemaIdentifiers : SetSchemaIdentifiers(me : in out; aSchemaIdentifiers : HArray1OfHAsciiString);
mutable HArray1OfHAsciiString);
SetSchemaIdentifiersValue(me : in out; num : Integer; SetSchemaIdentifiersValue(me : in out; num : Integer;
aSchemaIdentifier : HAsciiString); aSchemaIdentifier : HAsciiString);
SchemaIdentifiers (me) returns HArray1OfHAsciiString; SchemaIdentifiers (me) returns HArray1OfHAsciiString;

@ -37,13 +37,13 @@ is
Create Create
---Purpose: Creates an empty GenHCurve2d. ---Purpose: Creates an empty GenHCurve2d.
returns mutable GenHCurve2d from Adaptor2d; returns GenHCurve2d from Adaptor2d;
Create(C: TheCurve) Create(C: TheCurve)
---Purpose: Creates a GenHCurve2d from a Curve ---Purpose: Creates a GenHCurve2d from a Curve
returns mutable GenHCurve2d from Adaptor2d; returns GenHCurve2d from Adaptor2d;
Set(me: mutable; C: TheCurve) Set(me: mutable; C: TheCurve)

@ -36,13 +36,13 @@ is
Create Create
---Purpose: Creates an empty GenHCurve. ---Purpose: Creates an empty GenHCurve.
returns mutable GenHCurve from Adaptor3d; returns GenHCurve from Adaptor3d;
Create(C: TheCurve) Create(C: TheCurve)
---Purpose: Creates a GenHCurve from a Curve ---Purpose: Creates a GenHCurve from a Curve
returns mutable GenHCurve from Adaptor3d; returns GenHCurve from Adaptor3d;
Set(me: mutable; C: TheCurve) Set(me: mutable; C: TheCurve)

@ -39,13 +39,13 @@ is
Create Create
---Purpose: Creates an empty GenHSurface. ---Purpose: Creates an empty GenHSurface.
returns mutable GenHSurface from Adaptor3d; returns GenHSurface from Adaptor3d;
Create(S: TheSurface) Create(S: TheSurface)
---Purpose: Creates a GenHSurface from a Surface. ---Purpose: Creates a GenHSurface from a Surface.
returns mutable GenHSurface from Adaptor3d; returns GenHSurface from Adaptor3d;
Set(me: mutable; S: TheSurface) Set(me: mutable; S: TheSurface)

@ -29,13 +29,13 @@ is
Create Create
returns mutable HVertex from Adaptor3d; returns HVertex from Adaptor3d;
Create(P: Pnt2d from gp; Ori: Orientation from TopAbs; Create(P: Pnt2d from gp; Ori: Orientation from TopAbs;
Resolution: Real from Standard) Resolution: Real from Standard)
returns mutable HVertex from Adaptor3d; returns HVertex from Adaptor3d;
Value(me: mutable) Value(me: mutable)
@ -64,7 +64,7 @@ is
is virtual; is virtual;
IsSame(me: mutable; Other: mutable like me) IsSame(me: mutable; Other: like me)
returns Boolean from Standard returns Boolean from Standard
is virtual; is virtual;

@ -44,12 +44,12 @@ is
Create Create
returns mutable TopolTool from Adaptor3d; returns TopolTool from Adaptor3d;
Create(Surface: HSurface from Adaptor3d) Create(Surface: HSurface from Adaptor3d)
returns mutable TopolTool from Adaptor3d; returns TopolTool from Adaptor3d;
Initialize(me: mutable) Initialize(me: mutable)
@ -79,7 +79,7 @@ is
Value(me: mutable) Value(me: mutable)
returns mutable HCurve2d from Adaptor2d returns HCurve2d from Adaptor2d
raises DomainError from Standard raises DomainError from Standard
is virtual; is virtual;
@ -103,7 +103,7 @@ is
Vertex(me: mutable) Vertex(me: mutable)
returns mutable HVertex from Adaptor3d returns HVertex from Adaptor3d
raises DomainError from Standard raises DomainError from Standard
is virtual; is virtual;

@ -21,7 +21,7 @@ uses MessageDriver from CDM,
is is
Create returns mutable Application from AppStd; Create returns Application from AppStd;
MessageDriver(me: mutable) MessageDriver(me: mutable)
returns MessageDriver from CDM returns MessageDriver from CDM

@ -21,7 +21,7 @@ uses MessageDriver from CDM,
is is
Create returns mutable Application from AppStdL; Create returns Application from AppStdL;
MessageDriver(me: mutable) MessageDriver(me: mutable)
returns MessageDriver from CDM returns MessageDriver from CDM

@ -41,13 +41,13 @@ raises
is is
Create(C: HCurve from Adaptor3d; Tol: Real) Create(C: HCurve from Adaptor3d; Tol: Real)
returns mutable CurvlinFunc; returns CurvlinFunc;
Create(C2D: HCurve2d from Adaptor2d; S: HSurface from Adaptor3d; Tol: Real) Create(C2D: HCurve2d from Adaptor2d; S: HSurface from Adaptor3d; Tol: Real)
returns mutable CurvlinFunc; returns CurvlinFunc;
Create(C2D1, C2D2: HCurve2d from Adaptor2d; S1, S2: HSurface from Adaptor3d; Tol: Real) Create(C2D1, C2D2: HCurve2d from Adaptor2d; S1, S2: HSurface from Adaptor3d; Tol: Real)
returns mutable CurvlinFunc; returns CurvlinFunc;
SetTol(me: mutable; Tol: Real) SetTol(me: mutable; Tol: Real)
---Purpose Update the tolerance to used ---Purpose Update the tolerance to used

@ -32,7 +32,7 @@ is
XOrigin: Length from Quantity = 0; XOrigin: Length from Quantity = 0;
anYOrigin: Length from Quantity = 0; anYOrigin: Length from Quantity = 0;
aRotationAngle: PlaneAngle from Quantity = 0) aRotationAngle: PlaneAngle from Quantity = 0)
returns mutable CircularGrid from Aspect; returns CircularGrid from Aspect;
---Purpose: creates a new grid. By default this grid is not ---Purpose: creates a new grid. By default this grid is not
-- active. -- active.

@ -35,7 +35,7 @@ is
Create( base_pixel, redmax, redmult, Create( base_pixel, redmax, redmult,
greenmax, greenmult, greenmax, greenmult,
bluemax, bluemult : in Integer from Standard ) bluemax, bluemult : in Integer from Standard )
returns mutable ColorCubeColorMap from Aspect returns ColorCubeColorMap from Aspect
raises RangeError from Standard ; raises RangeError from Standard ;
---Level: Public ---Level: Public
---Purpose : Create a ColorCube ColorMap. ---Purpose : Create a ColorCube ColorMap.

@ -35,7 +35,7 @@ raises
is is
Create( basepixel,dimension : in Integer from Standard ; Create( basepixel,dimension : in Integer from Standard ;
color : in Color from Quantity ) color : in Color from Quantity )
returns mutable ColorRampColorMap from Aspect returns ColorRampColorMap from Aspect
raises RangeError from Standard ; raises RangeError from Standard ;
---Level: Public ---Level: Public
---Purpose : Create a Color Ramp Colormap starting from Black at ---Purpose : Create a Color Ramp Colormap starting from Black at
@ -43,7 +43,7 @@ is
Create( basepixel,dimension : in Integer from Standard ; Create( basepixel,dimension : in Integer from Standard ;
colorName : in NameOfColor from Quantity ) colorName : in NameOfColor from Quantity )
returns mutable ColorRampColorMap from Aspect returns ColorRampColorMap from Aspect
raises RangeError from Standard ; raises RangeError from Standard ;
---Level: Public ---Level: Public
---Purpose : Create a Color Ramp Colormap starting from Black at ---Purpose : Create a Color Ramp Colormap starting from Black at

@ -359,19 +359,19 @@ is
-- Category: Inquire methods -- Category: Inquire methods
---------------------------- ----------------------------
ColorMap(me) returns mutable ColorMap from Aspect ColorMap(me) returns ColorMap from Aspect
raises UndefinedMap from Aspect is static; raises UndefinedMap from Aspect is static;
TypeMap(me) returns mutable TypeMap from Aspect TypeMap(me) returns TypeMap from Aspect
raises UndefinedMap from Aspect is static; raises UndefinedMap from Aspect is static;
WidthMap(me) returns mutable WidthMap from Aspect WidthMap(me) returns WidthMap from Aspect
raises UndefinedMap from Aspect is static; raises UndefinedMap from Aspect is static;
FontMap(me) returns mutable FontMap from Aspect FontMap(me) returns FontMap from Aspect
raises UndefinedMap from Aspect is static; raises UndefinedMap from Aspect is static;
MarkMap(me) returns mutable MarkMap from Aspect MarkMap(me) returns MarkMap from Aspect
raises UndefinedMap from Aspect is static; raises UndefinedMap from Aspect is static;
WorkSpace ( me ; Width,Heigth : out Length from Quantity ) WorkSpace ( me ; Width,Heigth : out Length from Quantity )

@ -32,7 +32,7 @@ raises
is is
Create returns mutable FontMap from Aspect; Create returns FontMap from Aspect;
AddEntry (me : mutable; AnEntry : FontMapEntry from Aspect) AddEntry (me : mutable; AnEntry : FontMapEntry from Aspect)
---Level: Public ---Level: Public

@ -37,7 +37,7 @@ raises
is is
Create Create
returns mutable GenericColorMap from Aspect; returns GenericColorMap from Aspect;
---Level: Public ---Level: Public
---Purpose: Creates a generic ColorMap . ---Purpose: Creates a generic ColorMap .

@ -31,7 +31,7 @@ raises
BadAccess from Aspect BadAccess from Aspect
is is
Create returns mutable MarkMap from Aspect; Create returns MarkMap from Aspect;
AddEntry (me : mutable; AnEntry : MarkMapEntry from Aspect) AddEntry (me : mutable; AnEntry : MarkMapEntry from Aspect)
---Level: Public ---Level: Public

@ -31,7 +31,7 @@ is
aFirstAngle: PlaneAngle from Quantity = 0; aFirstAngle: PlaneAngle from Quantity = 0;
aSecondAngle: PlaneAngle from Quantity = 0; aSecondAngle: PlaneAngle from Quantity = 0;
aRotationAngle: PlaneAngle from Quantity = 0) aRotationAngle: PlaneAngle from Quantity = 0)
returns mutable RectangularGrid from Aspect returns RectangularGrid from Aspect
---Purpose: creates a new grid. By default this grid is not ---Purpose: creates a new grid. By default this grid is not
-- active. -- active.
-- The first angle is given relatively to the horizontal. -- The first angle is given relatively to the horizontal.

@ -31,7 +31,7 @@ raises
BadAccess from Aspect BadAccess from Aspect
is is
Create returns mutable TypeMap from Aspect; Create returns TypeMap from Aspect;
AddEntry (me : mutable; AnEntry : TypeMapEntry from Aspect) AddEntry (me : mutable; AnEntry : TypeMapEntry from Aspect)
---Level: Public ---Level: Public

@ -34,7 +34,7 @@ raises
is is
Create Create
returns mutable WidthMap from Aspect; returns WidthMap from Aspect;
---Level: Public ---Level: Public
---Purpose: Creates a width map. ---Purpose: Creates a width map.

@ -32,12 +32,12 @@ uses
is is
Create Create
returns mutable PaveBlock from BOPDS; returns PaveBlock from BOPDS;
---Purpose: ---Purpose:
--- Empty contructor --- Empty contructor
--- ---
Create (theAllocator: BaseAllocator from BOPCol) Create (theAllocator: BaseAllocator from BOPCol)
returns mutable PaveBlock from BOPDS; returns PaveBlock from BOPDS;
---Purpose: ---Purpose:
--- Contructor --- Contructor
--- <theAllocator> - the allocator to manage the memory --- <theAllocator> - the allocator to manage the memory

@ -48,7 +48,7 @@ uses
is is
Create Create
returns mutable Context from BOPInt; returns Context from BOPInt;
---C++: alias "Standard_EXPORT virtual ~BOPInt_Context();" ---C++: alias "Standard_EXPORT virtual ~BOPInt_Context();"
Create (theAllocator: BaseAllocator from BOPCol) Create (theAllocator: BaseAllocator from BOPCol)

@ -40,13 +40,13 @@ is
Text : CString from Standard; Text : CString from Standard;
TextColor : Color from Draw TextColor : Color from Draw
) )
returns mutable DrawableShape from BOPTest; returns DrawableShape from BOPTest;
Create (S : Shape from TopoDS; Create (S : Shape from TopoDS;
Text : CString from Standard; Text : CString from Standard;
TextColor : Color from Draw TextColor : Color from Draw
) )
returns mutable DrawableShape from BOPTest; returns DrawableShape from BOPTest;
Pnt(me) returns Pnt from gp is private; Pnt(me) returns Pnt from gp is private;

@ -28,7 +28,7 @@ is
Create(C : Curve from Geom; Create(C : Curve from Geom;
L : Location from TopLoc) L : Location from TopLoc)
returns mutable Curve3D from BRep; returns Curve3D from BRep;
D0(me; U : Real; P : out Pnt from gp); D0(me; U : Real; P : out Pnt from gp);
---Purpose: Computes the point at parameter U. ---Purpose: Computes the point at parameter U.
@ -44,7 +44,7 @@ is
Curve3D(me : mutable; C : Curve from Geom) Curve3D(me : mutable; C : Curve from Geom)
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep; Copy(me) returns CurveRepresentation from BRep;
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
fields fields

@ -33,7 +33,7 @@ is
Create(S1 , S2 : Surface from Geom; Create(S1 , S2 : Surface from Geom;
L1 , L2 : Location from TopLoc; L1 , L2 : Location from TopLoc;
C : Shape from GeomAbs) C : Shape from GeomAbs)
returns mutable CurveOn2Surfaces from BRep; returns CurveOn2Surfaces from BRep;
IsRegularity(me) returns Boolean IsRegularity(me) returns Boolean
---Purpose: Returns True. ---Purpose: Returns True.
@ -67,7 +67,7 @@ is
Continuity(me : mutable; C : Shape from GeomAbs) Continuity(me : mutable; C : Shape from GeomAbs)
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep; Copy(me) returns CurveRepresentation from BRep;
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
fields fields

@ -34,7 +34,7 @@ is
S : Surface from Geom; S : Surface from Geom;
L : Location from TopLoc; L : Location from TopLoc;
C : Shape from GeomAbs) C : Shape from GeomAbs)
returns mutable CurveOnClosedSurface from BRep; returns CurveOnClosedSurface from BRep;
SetUVPoints2(me : mutable; P1, P2 : Pnt2d from gp) SetUVPoints2(me : mutable; P1, P2 : Pnt2d from gp)
---C++: inline ---C++: inline
@ -84,7 +84,7 @@ is
PCurve2(me : mutable; C : Curve from Geom2d) PCurve2(me : mutable; C : Curve from Geom2d)
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep Copy(me) returns CurveRepresentation from BRep
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
is redefined; is redefined;

@ -33,7 +33,7 @@ is
Create(PC : Curve from Geom2d; Create(PC : Curve from Geom2d;
S : Surface from Geom; S : Surface from Geom;
L : Location from TopLoc) L : Location from TopLoc)
returns mutable CurveOnSurface from BRep; returns CurveOnSurface from BRep;
SetUVPoints(me : mutable; P1, P2 : Pnt2d from gp) SetUVPoints(me : mutable; P1, P2 : Pnt2d from gp)
---C++: inline ---C++: inline
@ -66,7 +66,7 @@ is
PCurve(me : mutable; C : Curve from Geom2d) PCurve(me : mutable; C : Curve from Geom2d)
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep is virtual; Copy(me) returns CurveRepresentation from BRep is virtual;
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
Update(me : mutable) Update(me : mutable)

@ -284,7 +284,7 @@ is
is virtual; is virtual;
Copy(me) returns mutable CurveRepresentation from BRep Copy(me) returns CurveRepresentation from BRep
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
is deferred; is deferred;

@ -27,7 +27,7 @@ is
Create(P : Real; Create(P : Real;
C : Curve from Geom; C : Curve from Geom;
L : Location from TopLoc) L : Location from TopLoc)
returns mutable PointOnCurve from BRep; returns PointOnCurve from BRep;
IsPointOnCurve(me) returns Boolean IsPointOnCurve(me) returns Boolean

@ -28,7 +28,7 @@ is
C : Curve from Geom2d; C : Curve from Geom2d;
S : Surface from Geom; S : Surface from Geom;
L : Location from TopLoc) L : Location from TopLoc)
returns mutable PointOnCurveOnSurface from BRep; returns PointOnCurveOnSurface from BRep;
IsPointOnCurveOnSurface(me) returns Boolean IsPointOnCurveOnSurface(me) returns Boolean
---Purpose: Returns True ---Purpose: Returns True

@ -24,7 +24,7 @@ is
Create(P1,P2 : Real; Create(P1,P2 : Real;
S : Surface from Geom; S : Surface from Geom;
L : Location from TopLoc) L : Location from TopLoc)
returns mutable PointOnSurface from BRep; returns PointOnSurface from BRep;
IsPointOnSurface(me) returns Boolean IsPointOnSurface(me) returns Boolean

@ -31,7 +31,7 @@ is
L: Location from TopLoc) L: Location from TopLoc)
---Purpose: ---Purpose:
returns mutable Polygon3D from BRep; returns Polygon3D from BRep;
IsPolygon3D(me) returns Boolean IsPolygon3D(me) returns Boolean
@ -47,7 +47,7 @@ is
DomainError from Standard DomainError from Standard
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep; Copy(me) returns CurveRepresentation from BRep;
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.

@ -33,7 +33,7 @@ is
P2: Polygon2D from Poly; P2: Polygon2D from Poly;
S: Surface from Geom; S: Surface from Geom;
L: Location from TopLoc) L: Location from TopLoc)
returns mutable PolygonOnClosedSurface from BRep; returns PolygonOnClosedSurface from BRep;
IsPolygonOnClosedSurface(me) returns Boolean IsPolygonOnClosedSurface(me) returns Boolean
@ -48,7 +48,7 @@ is
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep Copy(me) returns CurveRepresentation from BRep
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
is redefined; is redefined;

@ -36,7 +36,7 @@ is
Create(P1, P2 : PolygonOnTriangulation from Poly; Create(P1, P2 : PolygonOnTriangulation from Poly;
Tr: Triangulation from Poly; Tr: Triangulation from Poly;
L : Location from TopLoc) L : Location from TopLoc)
returns mutable PolygonOnClosedTriangulation from BRep; returns PolygonOnClosedTriangulation from BRep;
IsPolygonOnClosedTriangulation(me) returns Boolean IsPolygonOnClosedTriangulation(me) returns Boolean
@ -53,7 +53,7 @@ is
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep is redefined; Copy(me) returns CurveRepresentation from BRep is redefined;
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.

@ -35,7 +35,7 @@ is
Create(P: Polygon2D from Poly; Create(P: Polygon2D from Poly;
S: Surface from Geom; S: Surface from Geom;
L: Location from TopLoc) L: Location from TopLoc)
returns mutable PolygonOnSurface from BRep; returns PolygonOnSurface from BRep;
IsPolygonOnSurface(me) returns Boolean IsPolygonOnSurface(me) returns Boolean
@ -64,7 +64,7 @@ is
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep Copy(me) returns CurveRepresentation from BRep
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.
is redefined; is redefined;

@ -31,7 +31,7 @@ is
Create(P: PolygonOnTriangulation from Poly; Create(P: PolygonOnTriangulation from Poly;
T: Triangulation from Poly; T: Triangulation from Poly;
L: Location from TopLoc) L: Location from TopLoc)
returns mutable PolygonOnTriangulation from BRep; returns PolygonOnTriangulation from BRep;
IsPolygonOnTriangulation(me) returns Boolean IsPolygonOnTriangulation(me) returns Boolean
@ -57,7 +57,7 @@ is
is redefined; is redefined;
Copy(me) returns mutable CurveRepresentation from BRep is virtual; Copy(me) returns CurveRepresentation from BRep is virtual;
---Purpose: Return a copy of this representation. ---Purpose: Return a copy of this representation.

@ -36,7 +36,7 @@ uses
ListOfCurveRepresentation from BRep ListOfCurveRepresentation from BRep
is is
Create returns mutable TEdge from BRep; Create returns TEdge from BRep;
---Purpose: Creates an empty TEdge. ---Purpose: Creates an empty TEdge.
Tolerance(me) returns Real Tolerance(me) returns Real
@ -82,7 +82,7 @@ is
---C++: inline ---C++: inline
is static; is static;
EmptyCopy(me) returns mutable TShape from TopoDS; EmptyCopy(me) returns TShape from TopoDS;
---Purpose: Returns a copy of the TShape with no sub-shapes. ---Purpose: Returns a copy of the TShape with no sub-shapes.
fields fields

@ -47,7 +47,7 @@ uses
is is
Create returns mutable TFace from BRep; Create returns TFace from BRep;
---Purpose: Creates an empty TFace. ---Purpose: Creates an empty TFace.
Surface(me) returns any Surface from Geom; Surface(me) returns any Surface from Geom;
@ -83,7 +83,7 @@ is
NaturalRestriction(me : mutable; N : Boolean); NaturalRestriction(me : mutable; N : Boolean);
---C++: inline ---C++: inline
EmptyCopy(me) returns mutable TShape from TopoDS EmptyCopy(me) returns TShape from TopoDS
---Purpose: Returns a copy of the TShape with no sub-shapes. ---Purpose: Returns a copy of the TShape with no sub-shapes.
-- The new Face has no triangulation. -- The new Face has no triangulation.
is redefined; is redefined;

@ -27,7 +27,7 @@ uses
ListOfPointRepresentation from BRep ListOfPointRepresentation from BRep
is is
Create returns mutable TVertex from BRep; Create returns TVertex from BRep;
Tolerance(me) returns Real Tolerance(me) returns Real
---C++: inline ---C++: inline
@ -63,7 +63,7 @@ is
---C++: return & ---C++: return &
is static; is static;
EmptyCopy(me) returns mutable TShape from TopoDS; EmptyCopy(me) returns TShape from TopoDS;
---Purpose: Returns a copy of the TShape with no sub-shapes. ---Purpose: Returns a copy of the TShape with no sub-shapes.
fields fields

@ -27,7 +27,7 @@ raises
ConstructionError from Standard ConstructionError from Standard
is is
Create returns mutable AsDes from BRepAlgo; Create returns AsDes from BRepAlgo;
---Purpose: Creates an empty AsDes. ---Purpose: Creates an empty AsDes.
Clear(me : mutable); Clear(me : mutable);

@ -28,10 +28,10 @@ is
Create(CurveXYZ: BSplineCurve from Geom; Create(CurveXYZ: BSplineCurve from Geom;
CurveUV1: BSplineCurve from Geom2d; CurveUV1: BSplineCurve from Geom2d;
CurveUV2: BSplineCurve from Geom2d) CurveUV2: BSplineCurve from Geom2d)
returns mutable ApproxLine from BRepApprox; returns ApproxLine from BRepApprox;
Create(lin: LineOn2S from IntSurf; Tang: Boolean from Standard) Create(lin: LineOn2S from IntSurf; Tang: Boolean from Standard)
returns mutable ApproxLine from BRepApprox; returns ApproxLine from BRepApprox;
NbPnts(me) NbPnts(me)
returns Integer from Standard returns Integer from Standard

@ -31,7 +31,7 @@ is
Create Create
returns mutable Line from BRepBlend; returns Line from BRepBlend;

@ -67,7 +67,7 @@ is
---Purpose: Returns true if a plane containing the edges of the ---Purpose: Returns true if a plane containing the edges of the
-- shape is found and built. Use the function Plane to consult the result. -- shape is found and built. Use the function Plane to consult the result.
Plane(me) Plane(me)
returns mutable Plane from Geom; returns Plane from Geom;
---Purpose: Returns the plane containing the edges of the shape. ---Purpose: Returns the plane containing the edges of the shape.
-- Warning -- Warning
-- Use the function Found to verify that the plane is built. If -- Use the function Found to verify that the plane is built. If

@ -27,7 +27,7 @@ is
Create(E: Edge from TopoDS) Create(E: Edge from TopoDS)
returns mutable Edge from BRepCheck; returns Edge from BRepCheck;
InContext(me: mutable; ContextShape: Shape from TopoDS); InContext(me: mutable; ContextShape: Shape from TopoDS);

@ -27,7 +27,7 @@ is
Create(F: Face from TopoDS) Create(F: Face from TopoDS)
returns mutable Face from BRepCheck; returns Face from BRepCheck;
InContext(me: mutable; ContextShape: Shape from TopoDS); InContext(me: mutable; ContextShape: Shape from TopoDS);

@ -28,7 +28,7 @@ is
Create(S: Shell from TopoDS) Create(S: Shell from TopoDS)
returns mutable Shell from BRepCheck; returns Shell from BRepCheck;
InContext(me: mutable; ContextShape: Shape from TopoDS); InContext(me: mutable; ContextShape: Shape from TopoDS);

@ -25,7 +25,7 @@ is
Create(V: Vertex from TopoDS) Create(V: Vertex from TopoDS)
returns mutable Vertex from BRepCheck; returns Vertex from BRepCheck;
InContext(me: mutable; ContextShape: Shape from TopoDS); InContext(me: mutable; ContextShape: Shape from TopoDS);

@ -33,7 +33,7 @@ is
Create(W: Wire from TopoDS) Create(W: Wire from TopoDS)
returns mutable Wire from BRepCheck; returns Wire from BRepCheck;
InContext(me: mutable; ContextShape: Shape from TopoDS); InContext(me: mutable; ContextShape: Shape from TopoDS);

@ -137,7 +137,7 @@ is
is deferred; is deferred;
Sect(me; IC, IS : Integer from Standard) Sect(me; IC, IS : Integer from Standard)
returns mutable SecHArray1 from ChFiDS returns SecHArray1 from ChFiDS
is deferred; is deferred;
end LocalOperation; end LocalOperation;

@ -384,7 +384,7 @@ is
returns Integer from Standard; returns Integer from Standard;
Sect(me; IC, IS : Integer from Standard) Sect(me; IC, IS : Integer from Standard)
returns mutable SecHArray1 from ChFiDS; returns SecHArray1 from ChFiDS;
fields fields

@ -262,7 +262,7 @@ is
GetLaw(me : in out; GetLaw(me : in out;
IC : Integer from Standard; IC : Integer from Standard;
E : Edge from TopoDS) E : Edge from TopoDS)
returns mutable Function from Law; returns Function from Law;
SetLaw(me : in out; SetLaw(me : in out;
IC : Integer from Standard; IC : Integer from Standard;
@ -472,7 +472,7 @@ is
returns Integer from Standard; returns Integer from Standard;
Sect(me; IC, IS : Integer from Standard) Sect(me; IC, IS : Integer from Standard)
returns mutable SecHArray1 from ChFiDS; returns SecHArray1 from ChFiDS;
------------------------------------- -------------------------------------

@ -83,7 +83,7 @@ is
Found(me) returns Boolean Found(me) returns Boolean
is static; is static;
Surface(me) returns mutable Surface from Geom Surface(me) returns Surface from Geom
is static; is static;
Tolerance(me) returns Real Tolerance(me) returns Real

@ -42,7 +42,7 @@ class DataStructureOfDelaun from BRepMesh inherits TShared from MMgt
-- presumed number of nodes in this mesh. The -- presumed number of nodes in this mesh. The
-- Mesh data structure will be automatically -- Mesh data structure will be automatically
-- redimensioned if necessary. -- redimensioned if necessary.
returns mutable DataStructureOfDelaun from BRepMesh ; returns DataStructureOfDelaun from BRepMesh ;
AddNode (me : mutable ; AddNode (me : mutable ;
theNode : Vertex from BRepMesh) theNode : Vertex from BRepMesh)

@ -24,7 +24,7 @@ uses
is is
Create returns mutable FaceAttribute from BRepMesh; Create returns FaceAttribute from BRepMesh;
GetDefFace(me:mutable) returns Real; GetDefFace(me:mutable) returns Real;
---C++: return & ---C++: return &

@ -74,7 +74,7 @@ is
inshape : Boolean from Standard=Standard_False; inshape : Boolean from Standard=Standard_False;
relative : Boolean from Standard=Standard_False; relative : Boolean from Standard=Standard_False;
shapetrigu: Boolean from Standard=Standard_False) shapetrigu: Boolean from Standard=Standard_False)
returns mutable FastDiscret from BRepMesh; returns FastDiscret from BRepMesh;
Create (defle : Real from Standard; Create (defle : Real from Standard;
@ -97,7 +97,7 @@ is
-- --
-- if <inshape> is True, the calculated -- if <inshape> is True, the calculated
-- triangulation will be stored in the shape. -- triangulation will be stored in the shape.
returns mutable FastDiscret from BRepMesh; returns FastDiscret from BRepMesh;
Perform (me: mutable; shape: Shape from TopoDS) is static; Perform (me: mutable; shape: Shape from TopoDS) is static;

@ -54,7 +54,7 @@ is
Create (theAngle : Real from Standard; Create (theAngle : Real from Standard;
theWithShare : Boolean from Standard=Standard_True) theWithShare : Boolean from Standard=Standard_True)
returns mutable FastDiscretFace from BRepMesh; returns FastDiscretFace from BRepMesh;

@ -30,7 +30,7 @@ uses
Real from Standard Real from Standard
is is
Compute(myclass ; AsDes : mutable AsDes from BRepAlgo; Compute(myclass ; AsDes : AsDes from BRepAlgo;
F : Face from TopoDS; F : Face from TopoDS;
NewEdges : IndexedMapOfShape from TopTools; NewEdges : IndexedMapOfShape from TopTools;
Tol : Real from Standard); Tol : Real from Standard);
@ -47,7 +47,7 @@ is
OFI : in out Offset from BRepOffset; OFI : in out Offset from BRepOffset;
MES : in out DataMapOfShapeShape from TopTools; MES : in out DataMapOfShapeShape from TopTools;
Build : DataMapOfShapeShape from TopTools; Build : DataMapOfShapeShape from TopTools;
AsDes : mutable AsDes from BRepAlgo; AsDes : AsDes from BRepAlgo;
Offset: Real from Standard; Offset: Real from Standard;
Tol : Real from Standard); Tol : Real from Standard);
-- Modified by skv - Fri Dec 26 16:53:16 2003 OCC4455 End -- Modified by skv - Fri Dec 26 16:53:16 2003 OCC4455 End

@ -35,7 +35,7 @@ uses
State from TopAbs State from TopAbs
is is
Create(AsDes : mutable AsDes from BRepAlgo; Create(AsDes : AsDes from BRepAlgo;
Side : State from TopAbs; Side : State from TopAbs;
Tol : Real from Standard); Tol : Real from Standard);

Some files were not shown because too many files have changed in this diff Show More