Forum archiveIssue archiveOther usage issues

Archived discussion

About a GeomAPI_PointsToBSpline question

Other usage issuesFri, 05/30/2008 - 03:362 replies

Browse this forum
QuestionAuthor

Hello:
If i create bspline by GeomAPI_PointsToBSpline and some points,Then how to get same points after create bspline.
For example:
I try to use p1(360.3152,202.2359,0.0000),p2(425.0337,234.1870,0.0000)
p3(485.3893,190.6174,0.0000),p4(545.7448,242.9010,0.0000) to create bspline by GeomAPI_PointsToBSpline.
After create bspline.I want to get points as same as p1(360.3152,202.2359,0.0000),p2(425.0337,234.1870,0.0000)
p3(485.3893,190.6174,0.0000),p4(545.7448,242.9010,0.0000)
How to get these points?

Discussion

2 archived replies

Posts are displayed in their archived order.

01Commenter-1

You have to save them yourself somewhere, the original points are used as sample points on the curve, the created curve only contains the control points that has nothing to do with your original points and a knot vector.

02Author

Thank you.I will try it.