TomFinnigan wrote:To show the knot intervals on edges, you can run:
_tsMacroUtil _ShowKnots
This will dump Rhino dots in the document at the center of each edge labeled with the knot interval.
It doesn't work, unfortunately. When I type _tsMacroUtil it asks me which macro utility function I want to use. The options are _ToolbarText, _ClearCapCache, _TestCaseTools, _PerfTest, _DragTest, _RegisterGripCallback, _ExportToolbarText, _DialogTest, _Crash, _LabelKnots, but not _ShowKnots; if I type directly _ShowKnots, it said it's an unknown command. Maybe I own an outdated version of the T-spline addon?
TomFinnigan wrote:If you're interested about the correlation between components in the tsm file and the model, you can run:
_tsSetDebugFlag
And then there are options for drawing vert indices, grip indices, edge indices, link indices, and face indices. Most of the time the user doesn't care about those, but they're useful for debugging. You need to have a t-spline in the document that has control points on in order for the debugging component dots to draw.
This one works, but can I have more infos about those elements, other than progressive numbering of them?
TomFinnigan wrote:Just as an aside, in our implementation verts are topological, while grips are the actual control points. It's possible with creases or the border of the surface to have multiple grips per vert. Links are just what we call half edges.
So, verts form a proper set (listed once for any point), while grips allow multeplicity more than one?
TomFinnigan wrote:Hope that helps. Let me know if you have other questions.
Thanks again.