()
| 86 | numberOfOutputPoints = 400 |
| 87 | offset = 1.0 |
| 88 | def fit (): |
| 89 | points.Reset() |
| 90 | i = 0 |
| 91 | while i < numberOfOutputPoints: |
| 92 | t = (numberOfInputPoints - offset) / (numberOfOutputPoints - 1) * i |
| 93 | points.InsertPoint(i, aSplineX.Evaluate(t), aSplineY.Evaluate(t), aSplineZ.Evaluate(t)) |
| 94 | i += 1 |
| 95 | |
| 96 | profileData.Modified() |
| 97 | |
| 98 | fit() |
| 99 |
no test coverage detected