mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 10:10:56 +08:00
135 lines
5.4 KiB
Plaintext
Executable File
135 lines
5.4 KiB
Plaintext
Executable File
-- Created on: 1993-01-09
|
|
-- Created by: CKY / Contract Toubro-Larsen ( TCD )
|
|
-- Copyright (c) 1993-1999 Matra Datavision
|
|
-- 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.
|
|
|
|
|
|
class DrawingWithRotation from IGESDraw inherits IGESEntity
|
|
|
|
---Purpose: defines IGESDrawingWithRotation, Type <404> Form <1>
|
|
-- in package IGESDraw
|
|
--
|
|
-- Permits rotation, in addition to transformation and
|
|
-- scaling, between the view and drawing coordinate systems
|
|
|
|
uses
|
|
|
|
HArray1OfIGESEntity from IGESData,
|
|
HArray1OfReal from TColStd,
|
|
ViewKindEntity from IGESData,
|
|
HArray1OfViewKindEntity from IGESDraw,
|
|
Pnt2d from gp,
|
|
XYZ from gp,
|
|
XY from gp,
|
|
HArray1OfXY from TColgp
|
|
|
|
raises DimensionMismatch, OutOfRange
|
|
|
|
is
|
|
|
|
Create returns mutable DrawingWithRotation;
|
|
|
|
-- Specific Methods pertaining to the class
|
|
|
|
Init (me : mutable;
|
|
allViews : HArray1OfViewKindEntity;
|
|
allViewOrigins : HArray1OfXY;
|
|
allOrientationAngles : HArray1OfReal;
|
|
allAnnotations : HArray1OfIGESEntity)
|
|
raises DimensionMismatch;
|
|
---Purpose : This method is used to set the fields of the class
|
|
-- DrawingWithRotation
|
|
-- - allViews : Pointers to View entities
|
|
-- - allViewOrigins : Origin coords of transformed views
|
|
-- - allOrientationAngles : Orientation angles of transformed views
|
|
-- - allAnnotations : Pointers to Annotation entities
|
|
-- raises exception if Lengths of allViews, allViewOrigins and
|
|
-- allOrientationAngles are not same.
|
|
|
|
NbViews (me) returns Integer;
|
|
---Purpose : returns the number of view pointers in <me>
|
|
|
|
ViewItem (me; Index : Integer) returns ViewKindEntity
|
|
raises OutOfRange;
|
|
---Purpose : returns the View entity indicated by Index
|
|
-- raises an exception if Index <= 0 or Index > NbViews().
|
|
|
|
ViewOrigin (me; Index : Integer) returns Pnt2d
|
|
raises OutOfRange;
|
|
---Purpose : returns the Drawing space coordinates of the origin of the
|
|
-- Transformed view indicated by Index
|
|
-- raises an exception if Index <= 0 or Index > NbViews().
|
|
|
|
OrientationAngle (me; Index : Integer) returns Real
|
|
raises OutOfRange;
|
|
---Purpose : returns the Orientation angle for the Transformed view
|
|
-- indicated by Index
|
|
-- raises an exception if Index <= 0 or Index > NbViews().
|
|
|
|
NbAnnotations (me) returns Integer;
|
|
---Purpose : returns the number of Annotation entities in <me>
|
|
|
|
Annotation (me; Index : Integer) returns IGESEntity
|
|
raises OutOfRange;
|
|
---Purpose : returns the Annotation entity in this Drawing, indicated by Index
|
|
-- raises an exception if Index <= 0 or Index > NbAnnotations().
|
|
|
|
-- infered informations
|
|
|
|
ViewToDrawing(me; NumView : Integer; ViewCoords : XYZ)
|
|
returns XY;
|
|
-- returns the Transformation of a View from View space to Drawing
|
|
-- space.
|
|
|
|
DrawingUnit (me; value : out Real) returns Boolean;
|
|
---Purpose : Returns the Drawing Unit Value if it is specified (by a
|
|
-- specific property entity)
|
|
-- If not specified, returns False, and val as zero :
|
|
-- unit to consider is then the model unit in GlobalSection
|
|
|
|
DrawingSize (me; X,Y : out Real) returns Boolean;
|
|
---Purpose : Returns the Drawing Size if it is specified (by a
|
|
-- specific property entity)
|
|
-- If not specified, returns False, and X,Y as zero :
|
|
-- unit to consider is then the model unit in GlobalSection
|
|
|
|
fields
|
|
|
|
--
|
|
-- Class : IGESDraw_DrawingWithRotation
|
|
--
|
|
-- Purpose : Declaration of the variables specific to a
|
|
-- DrawingWithRotation Entity.
|
|
--
|
|
-- Reminder : A DrawingWithRotation Entity is defined by :
|
|
-- - Pointers to View entities
|
|
-- - Origin coordinates of transformed views
|
|
-- - Orientation angles of transformed views
|
|
-- - Pointers to Annotation entities
|
|
--
|
|
|
|
theViews : HArray1OfViewKindEntity;
|
|
|
|
theViewOrigins : HArray1OfXY;
|
|
|
|
theOrientationAngles : HArray1OfReal;
|
|
|
|
theAnnotations : HArray1OfIGESEntity;
|
|
|
|
end DrawingWithRotation;
|