Message 1 of 4
constructionPlane problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
In my add-in script I have created two construction planes to do some mirroring.
planes = newComp.constructionPlanes
constPlane = newComp.yZConstructionPlane
planeInput = planes.createInput()
offsetDistance = adsk.core.ValueInput.createByReal(0)
planeInput.setByOffset(constPlane, offsetDistance)
yzPlane = planes.add(planeInput)
After the mirroring is done I try:
yzPlane.isVisible = False
and I get an exception error that says "can't set attribute".
I have also tried:
constPlanes.isVisible = False
and get the same exception error.
IntelliSense shows "isVisible" is available for yzPlane and constPlane
Brad Bylls