I'm importing a reasonably complex 3d model into autocad R13 using a .dxf
file. It's a computer generated
3d geodesic structure made up of many connected line segments. I'd like to
be able to apply an aligned
linear dimension to each line segment, and also show the angles between
segments.
It would be most convinent to have a little lisp script to apply the
dimensions to any selected segments.
I'm hoping that with such a script, I could rotate the model, select a group
of segments, and display the
dimensions and angles for the selected segments.
But, I can't even seem to do this manually. If I snap to intersections, I'm
able to place a dimension along
a line segment, but the length displayed is relative to UCS, and not the 3d
length as shown by DBLIST.
Is there a way to do this? I can find no reference to dimensioning in 3d in
my books.
Is there an addin available to do this? What is the correct approach to
dimensioning a complex 3d
model?
Rick
Bughunter skrev i meddelelsen <8c1j3...@enews4.newsguy.com>...
Thank you very much,
Rick
"Joe Funk" <joe...@coastnet.com> wrote in message
news:seb2d...@corp.supernews.com...
> Before issuing the dimension command, align the UCS x-axis with
> the segment. At the command line:
> :UCS
> :3
> :<pick "origin" end of segment>
> :<pick other end end of segment>
>
> or in LISP:
> (setq PT1 (getpoint "\nFirst point: ")
> PT2 (getpoint "\nFirst point: ")
> )
> (command "._UCS" "_3" PT1 PT2 "")
>
> This only accounts for the direction of the x-axis; you
> will probably have to rotate the UCS about the x-axis to
> have the dimension text appear plan to your view.
>
> "Bughunter" <foo...@aol.com> wrote in message
> news:8c1j3...@enews4.newsguy.com...