...
Basics - Views
Describes the different angles positions an object can be positioned in within AutoCAD.rendered in for AutoCAD.
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views Topview.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewtop1 - a variable that yields an AutoCAD command that appears at the end of a line of AutoCAD code which renders a 3D image in top viewviewtop1
viewtop1 := concat("_-view",sp,"o",sp,"t")
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views Topview.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewtop - a variable that yields an AutoCAD command that appears at the
...
beginning or middle of a line of AutoCAD code which renders a 3D image in top view
...
viewtop
viewtop := concat("_-view",sp,"o",sp,"t",sp)
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views Frontview.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewfront - a variable that yields an AutoCAD command that appears at the beginning or middle of a line of AutoCAD code which renders a 3D image in
...
front view
viewfront
viewfront := concat("_-view",sp,"o",sp,"f",sp)
- Definition:
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views Frontview.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewfront1 - a variable that yields an AutoCAD command that appears at the end of a line of AutoCAD code which renders a 3D image in front viewviewfront1
viewfront1 := concat("_-view",sp,"o",sp,"f")
- Def:
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views Rightview.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewrightside - a variable that yields an AutoCAD command that appears at the beginning or middle of a line of AutoCAD code which renders a 3D image with the right side facing the userviewrightside
viewrightside := concat("_-view",sp,"o",sp,"r",sp)
- def:
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views Rightview.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewrightside1 - a variable that yields an AutoCAD command that appears at the end of a line of AutoCAD code which renders a 3D image with the right side facing the userviewrightside1
viewrightsidw1 := concat("_-view",sp,"o",sp,"r")
- def:
| Wiki Markup |
|---|
{float:left|border=1px solid black}
[!AutoCAD Views SE.JPG|width=60px!|AutoCAD Pipe Program]
{float} |
viewse - a variable that yields an AutoCAD command that appears at the end of a line of AutoCAD code which renders a 3D image in a south eastern viewviewse
viewse := concat("_-view",sp,"se")
...