- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Get the B-spline curve on the B-spline surface
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-23-2011 11:43 PM
Hello!
i made a B-spline surface using the api function (api_mk_fa_spl_ctrlpts).
then, i want to get the B-spline curve of boundary of Surface.
but can't find that.
is there any API function?
Is there anyone who knows where that thing is?
I don't know in detail because i'm a beginner in this field.
please help me ~
Re: Get the B-spline curve on the B-spline surface
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-24-2011 06:43 AM
Hi
I think the thing to do is first get the edges then get the geometry from them. This can be accomplished as follows:
- Get the list of edges from the new face
#include "kernapi.hxx"
//..
ENTITY_LIST edges;
api_get_edges(face, edges );
- For each edge, get the underlying geometry
Re: Get the B-spline curve on the B-spline surface
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-25-2011 05:37 PM
Thank you for your answer.
I didn't understand competly yet. But i know what you said to me.
I will study more.
I really appreciate to you.
Kobofa

