Re: How to access Isopoint Cluster

2012-11-16 Thread Eugen Sares
Thanks a lot, Fabricio! The SelectMembers() function is one way to go. I also found: var oSubComponent = oCluster.CreateSubComponent(); // text.isopnt[(3,0.922),(2,0.433),(0,0.267)] I'll check shortly if it's operator safe. However, the U values are truncated after the 3rd decimal point.

Re: How to access Isopoint Cluster

2012-11-15 Thread Eugen Sares
Anyone? Thanks! Am 14.11.2012 14:32, schrieb Eugen Sares: Hi, I'm looking for away to get the SubcurveIndex/UValue data out again that an Isopoint Cluster was created from. var oObject = CreatePrim(Text, NurbsCurve, null, null); SelectObj(text.isopnt[(3,0.922)], null, null);

Re: How to access Isopoint Cluster

2012-11-15 Thread Fabricio Chamon
maybe this (be sure to check if it is working properly): var oObject = CreatePrim(Text, NurbsCurve, null, null); SelectObj(text.isopnt[(3,0.922)], null, null); AddToSelection(text.isopnt[(2,0.433)], null, null); AddToSelection(text.isopnt[(0,0.267)], null, null);

How to access Isopoint Cluster

2012-11-14 Thread Eugen Sares
Hi, I'm looking for away to get the SubcurveIndex/UValue data out again that an Isopoint Cluster was created from. var oObject = CreatePrim(Text, NurbsCurve, null, null); SelectObj(text.isopnt[(3,0.922)], null, null); AddToSelection(text.isopnt[(2,0.433)], null, null);