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.
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.
Solved by Kent1Cooper. Go to Solution.
Solved by Patchy. 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.]
@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.
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.
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.
@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.
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.
Can't find what you're looking for? Ask the community or share your knowledge.