General Program Information

Basics - Zoom

zoom - A function that creates a close up view on a 3D object in AutoCAD. This function is found at beginning or middle of a line of AutoCAD code.
zoom :=

  • concat("_zoom",sp,"e",sp)

zoomA - A function that creates a close up view on a 3D object in AutoCAD. This function is found at the end of a line of AutoCAD code.
zoomA :=

  • concat("_zoom",sp,"e")

zoomwin - A function that creates a close up view on a 3D object in AutoCAD by using two points to specify the window size the object is viewed in. This function is found at the end of a line of AutoCAD code.
zoomwin(p1,p2) :=

  • concat("_zoom",sp,"w",sp,point(p1<0>),sp,point(p2<0>))

zoomwinA - A function that creates a close up view on a 3D object in AutoCAD by using two points to specify the window size the object is viewed in. This function is found at the beginning or middle of a line of AutoCAD code.
zoomwinA(p1,p2) :=

  • concat("_zoom",sp,"w",sp,point(p1<0>),sp,point(p2<0>),sp)
  • No labels