Include :

- aggiunto il caso delle curve compo degeneri, composte da un solo punto.
This commit is contained in:
Daniele Bariletti
2024-03-14 18:02:56 +01:00
parent 6cb8988822
commit c709b90c74
+2
View File
@@ -70,6 +70,8 @@ class __declspec( novtable) ICurveComposite : public ICurve
virtual bool GetCurveTempProp( int nCrv, int& nProp, int nPropInd = 0) const = 0 ;
virtual bool SetCurveTempParam( int nCrv, double dParam, int nParamInd = 0) = 0 ;
virtual bool GetCurveTempParam( int nCrv, double& dParam, int nParamInd = 0) const = 0 ;
virtual bool FromPoint( Point3d& ptStart) = 0 ;
virtual bool GetOnlyPoint( Point3d& ptStart) const = 0 ;
} ;
//-----------------------------------------------------------------------------