
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Are the transient geometry 2D coordinate system and the values from the height and width properties different units?
I am trying to create automated drawings with iLogic and currently, I am playing around with inserting sketch lines for section views.
Currently for length of the sketch lines, I am using:
SyntaxEditor Code Snippet
oSectionDrawSketch.Sketchlines.AddByTwoPoints(oTG.CreatePoint2d(0,-(oView1.Height)),oTG.CreatePoint2d(0,(oView1.Height)))
So basically, I am creating a sketch line (for sectioning) based on the height of my baseview. However, for some reason, the line and baseview do not scale appropriately. If I set the height of my baseview to 5, my line becomes smaller than my circular part. If I increase the height to 15, the line becomes larger. Could this be due to oTG.Createpoint2D and oView1.Height being different units?
Solved! Go to Solution.