mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-19 01:39:00 +08:00
95 lines
3.2 KiB
Plaintext
Executable File
95 lines
3.2 KiB
Plaintext
Executable File
-- Created on: 1997-08-06
|
|
-- Created by: Philippe MANGIN
|
|
-- Copyright (c) 1997-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.
|
|
|
|
|
|
|
|
private class QuasiAngularConvertor from GeomFill
|
|
|
|
---Purpose: To convert circular section in QuasiAngular Bezier
|
|
-- form
|
|
|
|
uses
|
|
Matrix from math,
|
|
Vector from math,
|
|
Pnt from gp,
|
|
Vec from gp,
|
|
Array1OfReal from TColStd,
|
|
Array1OfPnt from TColgp,
|
|
Array1OfVec from TColgp
|
|
|
|
raises NotDone from StdFail
|
|
|
|
is
|
|
Create returns QuasiAngularConvertor from GeomFill;
|
|
|
|
Initialized(me)
|
|
---Purpose: say if <me> is Initialized
|
|
returns Boolean;
|
|
|
|
Init(me: in out);
|
|
|
|
Section(me : in out;
|
|
FirstPnt : Pnt from gp;
|
|
Center : Pnt from gp;
|
|
Dir : Vec from gp;
|
|
Angle : Real from Standard;
|
|
Poles : out Array1OfPnt from TColgp;
|
|
Weights : out Array1OfReal from TColStd);
|
|
|
|
Section(me: in out;
|
|
FirstPnt : Pnt from gp;
|
|
DFirstPnt : Vec from gp;
|
|
Center : Pnt from gp;
|
|
DCenter : Vec from gp;
|
|
Dir : Vec from gp;
|
|
DDir : Vec from gp;
|
|
Angle : Real from Standard;
|
|
DAngle : Real from Standard;
|
|
Poles : out Array1OfPnt from TColgp;
|
|
DPoles : out Array1OfVec from TColgp;
|
|
Weights : out Array1OfReal from TColStd;
|
|
DWeights : out Array1OfReal from TColStd);
|
|
|
|
Section(me : in out;
|
|
FirstPnt : Pnt from gp;
|
|
DFirstPnt : Vec from gp;
|
|
D2FirstPnt: Vec from gp;
|
|
Center : Pnt from gp;
|
|
DCenter : Vec from gp;
|
|
D2Center : Vec from gp;
|
|
Dir : Vec from gp;
|
|
DDir : Vec from gp;
|
|
D2Dir : Vec from gp;
|
|
Angle : Real from Standard;
|
|
DAngle : Real from Standard;
|
|
D2Angle : Real from Standard;
|
|
Poles : out Array1OfPnt from TColgp;
|
|
DPoles : out Array1OfVec from TColgp;
|
|
D2Poles : out Array1OfVec from TColgp;
|
|
Weights : out Array1OfReal from TColStd;
|
|
DWeights : out Array1OfReal from TColStd;
|
|
D2Weights : out Array1OfReal from TColStd);
|
|
|
|
fields
|
|
myinit : Boolean from Standard;
|
|
B : Matrix from math;
|
|
Px, Py, W, Vx, Vy, Vw : Vector from math;
|
|
end QuasiAngularConvertor;
|