mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 22:11:17 +08:00
91 lines
3.8 KiB
Plaintext
Executable File
91 lines
3.8 KiB
Plaintext
Executable File
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
--
|
|
-- The content of this file is subject to the Open CASCADE Technology Public
|
|
-- License Version 6.5 (the "License"). You may not use the content of this file
|
|
-- except in compliance with the License. Please obtain a copy of the License
|
|
-- at http://www.opencascade.org and read it completely before using this file.
|
|
--
|
|
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
--
|
|
-- The Original Code and all software distributed under the License is
|
|
-- distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
-- Initial Developer hereby disclaims all such warranties, including without
|
|
-- limitation, any warranties of merchantability, fitness for a particular
|
|
-- purpose or non-infringement. Please see the License for the specific terms
|
|
-- and conditions governing the rights and limitations under the License.
|
|
|
|
deferred class SensitivePoly from Select3D
|
|
inherits SensitiveEntity from Select3D
|
|
|
|
---Purpose: Sensitive Entity to make a face selectable.
|
|
-- In some cases this class can raise Standard_ConstructionError and
|
|
-- Standard_OutOfRange exceptions from its member Select3D_PointData
|
|
-- mypolyg.
|
|
|
|
uses
|
|
EntityOwner from SelectBasics,
|
|
Projector from Select3D,
|
|
ListOfBox2d from SelectBasics,
|
|
Array1OfPnt from TColgp,
|
|
HArray1OfPnt from TColgp,
|
|
Array1OfPnt2d from TColgp,
|
|
Box2d from Select3D,
|
|
PointData from Select3D
|
|
|
|
raises
|
|
ConstructionError from Standard,
|
|
OutOfRange from Standard
|
|
|
|
is
|
|
|
|
Initialize (OwnerId : EntityOwner from SelectBasics;
|
|
ThePoints : Array1OfPnt from TColgp)
|
|
returns mutable SensitivePoly;
|
|
---Level: Public
|
|
---Purpose: Constructs a sensitive face object defined by the
|
|
-- owner OwnerId, the array of points ThePoints, and
|
|
-- the sensitivity type Sensitivity.
|
|
-- The array of points is the outer polygon of the geometric face.
|
|
|
|
Initialize (OwnerId : EntityOwner from SelectBasics;
|
|
ThePoints : HArray1OfPnt from TColgp)
|
|
returns mutable SensitivePoly;
|
|
---Level: Public
|
|
---Purpose: Constructs a sensitive face object defined by the
|
|
-- owner OwnerId, the array of points ThePoints, and
|
|
-- the sensitivity type Sensitivity.
|
|
-- The array of points is the outer polygon of the geometric face.
|
|
|
|
Initialize(OwnerId : EntityOwner from SelectBasics;
|
|
NbOfPoints : Integer = 6)
|
|
returns mutable SensitivePoly;
|
|
---Level: Public
|
|
---Purpose: Constructs the sensitive circle object defined by the
|
|
-- owner OwnerId, the circle Circle, the Boolean
|
|
-- FilledCircle and the number of points NbOfPoints.
|
|
|
|
Project (me:mutable;aProjector : Projector from Select3D) is redefined virtual;
|
|
---Level: Public
|
|
---Purpose: projection of the sensitive primitive in order to
|
|
-- get 2D boxes for the Sort Algorithm
|
|
|
|
Areas (me:mutable ; boxes : in out ListOfBox2d from SelectBasics) is redefined static;
|
|
---Level: Public
|
|
---Purpose: stores in <boxes> the 2D Boxes which represent the sensitive face
|
|
-- in the selection algorithm.
|
|
|
|
Points3D(me:mutable; theHArrayOfPnt : in out HArray1OfPnt from TColgp);
|
|
---Purpose: Returns the 3D points of the array used at construction time.
|
|
---C++: inline
|
|
|
|
Points2D(me:mutable; theArrayOfPnt2d : in out Array1OfPnt2d from TColgp);
|
|
---Purpose: Returns the 2D points of the array used at construction time.
|
|
---C++: inline
|
|
|
|
fields
|
|
|
|
mybox2d : Box2d from Select3D is protected;
|
|
mypolyg : PointData from Select3D is protected;
|
|
end SensitivePoly;
|