- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I would like to know the best method to measure an edge of a 3d solid in 3d view.
See attached photo. Want the measurement for A.
Solved! Go to Solution.
Link copied
Starting in December, we will archive content from the community that is 10 years and older. This FAQ provides more information.
I would like to know the best method to measure an edge of a 3d solid in 3d view.
See attached photo. Want the measurement for A.
Solved! Go to Solution.
@Patchy wrote:
DISTANCE, snap to 2 endpoints should work.
DIST is the command name [DISTANCE is a System Variable, which holds the result of the latest DIST command.]
In addition to DIST - I will sometimes draw a temporary 3DPolyline from desired points. Then select that 3DPloyline and check its length property.
This gives me a quick visual check to verify the desired distance.
Been using ACAD for > 25 yrs. - I did not know that. about the DISTANCE variable.
@Anonymous wrote:
Been using ACAD for > 25 yrs. - I did not know that. about the DISTANCE variable.
Another couple of System Variables that are related and that you may not know about: AREA and PERIMETER, which store those properties from the latest AREA or LIST [when used on something having such properties] command. AREA is also a command name, so the only way to read that one is with (getvar 'area). With DISTANCE and PERIMETER, you can type them in like commands, and the values are reported in current linear Units settings, or if you use (getvar) the values will be in real numbers.
Thanks Kent,
I don't often need to look at area or perimeter, I'm more of a MASSPROP kind of guy. 🙂 But it's good to know.