mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 13:48:57 +08:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
95 lines
2.4 KiB
Plaintext
95 lines
2.4 KiB
Plaintext
-- Created on: 1992-03-26
|
|
-- Created by: Laurent BUCHARD
|
|
-- Copyright (c) 1992-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
--
|
|
-- This file is part of Open CASCADE Technology software library.
|
|
--
|
|
-- This library is free software; you can redistribute it and / or modify it
|
|
-- under the terms of the GNU Lesser General Public version 2.1 as published
|
|
-- by the Free Software Foundation, with special exception defined in the file
|
|
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
-- distribution for complete text of the license and disclaimer of any warranty.
|
|
--
|
|
-- Alternatively, this file may be used under the terms of Open CASCADE
|
|
-- commercial license or contractual agreement.
|
|
|
|
deferred class ImpTool from IntImpParGen
|
|
|
|
---Purpose: Template class for an implicit curve.
|
|
|
|
|
|
uses Pnt2d from gp,
|
|
Vec2d from gp
|
|
|
|
is
|
|
|
|
|
|
Value (me; U: Real from Standard)
|
|
|
|
--Purpose: Computes the point at parameter U on the
|
|
-- Implicit Curve.
|
|
|
|
returns Pnt2d from gp
|
|
is static;
|
|
|
|
|
|
D1 (me; U: Real from Standard ; P: out Pnt2d; T: out Vec2d)
|
|
|
|
--Purpose: Computes the first derivative and the point on the
|
|
-- implicit curve at parameter U.
|
|
|
|
is static;
|
|
|
|
|
|
D2 (me; U: Real from Standard ; P: out Pnt2d; T,N: out Vec2d)
|
|
|
|
--Purpose: Computes the first, the second derivatives
|
|
-- and the point on the implicit curve at parameter U.
|
|
|
|
is static;
|
|
|
|
|
|
Distance(me; P: Pnt2d from gp)
|
|
|
|
---Purpose: Computes the value of the signed distance between
|
|
-- the point P and the implicit curve.
|
|
--
|
|
|
|
returns Real from Standard
|
|
is static;
|
|
|
|
|
|
GradDistance(me; P: Pnt2d from gp)
|
|
|
|
---Purpose: Computes the Gradient of the Signed Distance
|
|
-- between a point and the implicit curve, at the
|
|
-- point P.
|
|
--
|
|
|
|
returns Vec2d from gp
|
|
is static;
|
|
|
|
|
|
FindParameter(me; P: Pnt2d from gp)
|
|
|
|
---Purpose: Returns the parameter U of the point on the
|
|
-- implicit curve corresponding to the point P.
|
|
-- The correspondance between P and the point P(U) on
|
|
-- the implicit curve must be coherent with the way
|
|
-- of determination of the signed distance.
|
|
|
|
returns Real from Standard
|
|
is static;
|
|
|
|
|
|
end ImpTool;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|