EgtGeomKernel 1.5j1 :

- modifica sui punti medi (ora sempre a metà lunghezza)
- correzioni a GetParamAtLength delle curve.
This commit is contained in:
Dario Sassi
2014-10-14 06:50:57 +00:00
parent ee0c3830ef
commit 1e2d4dfc59
7 changed files with 48 additions and 17 deletions
+1 -1
View File
@@ -424,7 +424,7 @@ CurveLine::GetParamAtLength( double dLen, double& dU) const
return false ;
// fine
if ( dLen < dTotLen - EPS_SMALL) {
if ( dLen > dTotLen - EPS_SMALL) {
dU = 1 ;
return true ;
}