Message 1 of 6
Isocurve help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello all,
My goal is to ultimately write a script to create an Isocurve on a user selected face or faces using the getIsoCurve method.
I am stuck at the beginning just trying to generate an Isocurve. I'm testing it on individual faces of a very simple patch surface derived from a T-Splines mesh and also on another patch surface extruded from a circle. The messageBox returns 'None Type' for isocurve:
# Snippet from my code
face0 = ui.selectEntity('Select a Face', 'Faces').entity
isocurve = face0.geometry.evaluator.getIsoCurve(.5, False)
ui.messageBox('Output: {0}'.format(isocurve.objectType))
1. How do query a face to determine which direction the U and V are?
2. Am I inputting the correct type of argument for the parameter?
3. Once an Isocurve is created, is it technically a Curve3D object?
4. I may be asking a lot of Fusion with this one, is it possible to convert an Isocurve to a spline?
Thank you for your help,
Josh