mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-26 18:48:53 +08:00
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
76 lines
2.9 KiB
Plaintext
76 lines
2.9 KiB
Plaintext
-- Created on: 1998-03-12
|
|
-- Created by: Pierre BARRAS
|
|
-- Copyright (c) 1998-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.
|
|
|
|
class SplitCurve from ShapeUpgrade inherits TShared from MMgt
|
|
|
|
---Purpose: Splits a curve with a criterion.
|
|
|
|
uses
|
|
Curve from Geom,
|
|
HArray1OfCurve from TColGeom,
|
|
HSequenceOfReal from TColStd,
|
|
Shape from GeomAbs,
|
|
Status from ShapeExtend
|
|
is
|
|
|
|
Create returns SplitCurve from ShapeUpgrade;
|
|
---Purpose: Empty constructor.
|
|
|
|
Init (me: mutable; First, Last: Real);
|
|
---Purpose: Initializes with curve first and last parameters.
|
|
|
|
SetSplitValues (me: mutable; SplitValues: HSequenceOfReal from TColStd);
|
|
---Purpose: Sets the parameters where splitting has to be done.
|
|
|
|
Build (me: mutable; Segment: Boolean) is virtual;
|
|
---Purpose: If Segment is True, the result is composed with
|
|
-- segments of the curve bounded by the SplitValues. If
|
|
-- Segment is False, the result is composed with trimmed
|
|
-- Curves all based on the same complete curve.
|
|
--
|
|
|
|
SplitValues(me) returns HSequenceOfReal from TColStd;
|
|
---C++: return const &
|
|
--- Purpose : returns all the splitting values including the
|
|
-- First and Last parameters of the input curve
|
|
|
|
|
|
---Level: Internal
|
|
|
|
--PrepareKnots (me: mutable) is protected;
|
|
---Purpose: Merges input split values and new ones into myGlobalKnots
|
|
|
|
Compute(me: mutable) is virtual;
|
|
---Purpose: Calculates points for correction/splitting of the curve
|
|
|
|
Perform(me: mutable; Segment: Boolean = Standard_True);
|
|
---Purpose: Performs correction/splitting of the curve.
|
|
--- First defines splitting values by method Compute(), then calls method Build().
|
|
|
|
Status (me; status: Status from ShapeExtend) returns Boolean;
|
|
---Purpose: Returns the status
|
|
-- OK - no splitting is needed
|
|
-- DONE1 - splitting required and gives more than one segment
|
|
-- DONE2 - splitting is required, but gives only one segment (initial)
|
|
-- DONE3 - geometric form of the curve or parametrisation is modified
|
|
fields
|
|
|
|
mySplitValues : HSequenceOfReal from TColStd is protected;
|
|
myNbCurves : Integer is protected;
|
|
myStatus : Integer is protected;
|
|
end;
|
|
|