mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-10 08:08:36 +08:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
132 lines
4.4 KiB
Plaintext
132 lines
4.4 KiB
Plaintext
-- Created on: 1993-03-26
|
|
-- Created by: Laurent BUCHARD
|
|
-- Copyright (c) 1993-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 License 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.
|
|
|
|
generic class MultiLineTool from ApproxInt (TheMultiLine as any;
|
|
TheMultiMPoint as any)
|
|
|
|
|
|
uses
|
|
Status from Approx,
|
|
Array1OfPnt from TColgp,
|
|
Array1OfPnt2d from TColgp,
|
|
Array1OfVec from TColgp,
|
|
Array1OfVec2d from TColgp
|
|
|
|
is
|
|
|
|
|
|
FirstPoint(myclass; ML: TheMultiLine) returns Integer;
|
|
---C++:inline
|
|
---Purpose: Returns the number of multipoints of the TheMultiLine.
|
|
|
|
LastPoint(myclass; ML: TheMultiLine) returns Integer;
|
|
---C++:inline
|
|
---Purpose: Returns the number of multipoints of the TheMultiLine.
|
|
|
|
NbP2d(myclass; ML: TheMultiLine) returns Integer;
|
|
---C++:inline
|
|
---Purpose: Returns the number of 2d points of a TheMultiLine.
|
|
|
|
|
|
NbP3d(myclass; ML: TheMultiLine) returns Integer;
|
|
---C++:inline
|
|
---Purpose: Returns the number of 3d points of a TheMultiLine.
|
|
|
|
|
|
Value(myclass; ML: TheMultiLine; MPointIndex: Integer; tabPt: out Array1OfPnt);
|
|
---C++:inline
|
|
---Purpose: returns the 3d points of the multipoint <MPointIndex>
|
|
-- when only 3d points exist.
|
|
|
|
|
|
Value(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabPt2d: out Array1OfPnt2d from TColgp);
|
|
---C++:inline
|
|
---Purpose: returns the 2d points of the multipoint <MPointIndex>
|
|
-- when only 2d points exist.
|
|
|
|
|
|
Value(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabPt: out Array1OfPnt from TColgp; tabPt2d: out Array1OfPnt2d);
|
|
---C++:inline
|
|
---Purpose: returns the 3d and 2d points of the multipoint
|
|
-- <MPointIndex>.
|
|
|
|
Tangency(myclass; ML: TheMultiLine; MPointIndex: Integer; tabV: out Array1OfVec from TColgp)
|
|
returns Boolean;
|
|
---C++:inline
|
|
---Purpose: returns the 3d points of the multipoint <MPointIndex>
|
|
-- when only 3d points exist.
|
|
|
|
|
|
Tangency(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabV2d: out Array1OfVec2d from TColgp)
|
|
returns Boolean;
|
|
---C++:inline
|
|
---Purpose: returns the 2d tangency points of the multipoint
|
|
-- <MPointIndex> only when 2d points exist.
|
|
|
|
|
|
Tangency(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabV: out Array1OfVec from TColgp; tabV2d: out Array1OfVec2d from TColgp)
|
|
returns Boolean;
|
|
---C++:inline
|
|
---Purpose: returns the 3d and 2d points of the multipoint
|
|
-- <MPointIndex>.
|
|
|
|
|
|
--- methods not used but necessary
|
|
|
|
|
|
Curvature(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabV: out Array1OfVec from TColgp)
|
|
returns Boolean;
|
|
---C++:inline
|
|
---Purpose: returns the 3d curvature of the multipoint <MPointIndex>
|
|
-- when only 3d points exist.
|
|
|
|
|
|
Curvature(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabV2d: out Array1OfVec2d from TColgp)
|
|
returns Boolean;
|
|
---C++:inline
|
|
---Purpose: returns the 2d curvature points of the multipoint
|
|
-- <MPointIndex> only when 2d points exist.
|
|
|
|
|
|
Curvature(myclass; ML: TheMultiLine; MPointIndex: Integer;
|
|
tabV: out Array1OfVec from TColgp;
|
|
tabV2d: out Array1OfVec2d from TColgp)
|
|
returns Boolean;
|
|
---C++:inline
|
|
---Purpose: returns the 3d and 2d curvature of the multipoint
|
|
-- <MPointIndex>.
|
|
|
|
|
|
|
|
MakeMLBetween(myclass; ML: TheMultiLine; I1, I2: Integer;
|
|
NbPMin: Integer)
|
|
returns TheMultiLine;
|
|
---C++:inline
|
|
---Purpose: Is called if WhatStatus returned "PointsAdded".
|
|
|
|
WhatStatus(myclass; ML: TheMultiLine; I1, I2: Integer)
|
|
---C++:inline
|
|
returns Status from Approx;
|
|
|
|
end MultiLineTool;
|
|
|