Hi Chri, also another thing you can set up to help with placing a dim in the z direction is put this on a shortcut key (like on the z key):
script: /* Snap to z direction */ var pp = moi.ui.getActivePointPicker(); if ( pp && pp.basePt ) { pp.restrictToLinePtDir( pp.basePt, moi.vectorMath.createPoint(0,0,1), true ); }
Then when you are drawing the dim after you place the first point you can push the Z key and that will lock it to the z direction and you can pick your other point. It's the same as making a construction line and activating "Project next pt" but just with one key press.
- Michael
|