Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
api_split_ periodic_f aces with option "new_perio dic_splitt ing"
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-24-2011 06:54 AM
Hi,
I found a function api_split_periodic_faces that splits periodic faces. The document mentioned about the "new_periodic_splitting" but did not provide any sample code showing how to use it. There is a sample for scheme but not for C++ code.
Does anyone have the answer for this?
Thanks.
Manhtriet.
Re: api_split_ periodic_f aces with option "new_perio dic_splitt ing"
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-24-2011 07:15 AM
Looks like new_periodic_splitting is a global option and not option for the API.
In that case, we should be able to set like any other global option.
option_header* new_periodic_splitting_option = NULL;
int prev_opt_value;
new_periodic_splitting_option = find_option("new_periodic_splitting");
if (new_periodic_splitting_option != NULL)
{
prev_opt_value = new_periodic_splitting_option->count()
new_periodic_splitting_option->set(2);
}
Re: api_split_ periodic_f aces with option "new_perio dic_splitt ing"
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-24-2011 08:05 AM
Thank you AR.
Manhtriet.

