blob: b33a2d4e5b0ec6e30a2964c2aca2114d21ca1905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
-- File: GccGeo.cdl
-- Created: Thu Apr 4 14:30:49 1991
-- Author: Remi GILET
-- <reg@topsn3>
---Copyright: Matra Datavision 1991
package GccGeo
---Purpose :
-- This package provides an implementation of analytic algorithms
-- (using only non-persistant entities) used to create 2d lines or
-- circles with geometric constraints.
uses GccEnt,
GccInt,
IntCurve,
GeomAbs,
TColStd,
Standard,
StdFail,
TColgp,
gp
is
generic class CurvePGTool;
generic class ParGenCurve;
generic class Circ2dTanCen;
-- Create a 2d circle TANgent to a 2d entity and CENtered on a 2d point.
generic class Circ2d2TanRad;
-- Create a 2d circle TANgent to 2 2d entities with the given RADius.
generic class Circ2dTanOnRad;
-- Create a 2d circle TANgent to a 2d entity and centered ON a 2d
-- entity (not a point) with the given radius.
generic class Circ2d2TanOn;
-- Create a 2d circle TANgent to 2 2d entities (circle, line or point)
-- and centered ON a 2d curve.
end GccGeo;
|