h3. Alum Stock Script
*layernewap* - [Layer{~}new~|AutoCAD Basics Layer] creates a new light grey layer, "alumplatform"
layernewap <-- layer{~}new~("alumplatform", ltgrey)
{float:left|border=2px solid black}
[!1.bmp|width=500px!|AutoCAD Platform Program AlumStockScript]
Southwest Isometric View
{float}
*alumplatform* - draws the platform which the alum barrels will sit on
alumplatform <-- StockPlatform("alumplat{~}origin~, S{~}Drum~, T{~}Ap~, W{~}ApWalkway~, alumplatcol{~}dim~, D{~}Drum~/2)
\\
\\
*layerseta* - [Layer{~}set~|AutoCAD Basics Layer] selects the layer "0".
layerseta <-- layer{~}set~("0")
*layerfreezeap* - [Layer{~}freeze~|AutoCAD Basics Layer] locks the layer "alumplatform" so that it cannot be edited.
layerfreezeap <-- layer{~}freeze~("alumplatform")
*layernewab* - [Layer{~}new~|AutoCAD Basics Layer] creates a new blue layer, "alumbarrels".
layernewab <-- layer{~}new~("alumbarrels", blue)
{float:left|border=2px solid black}
[!2.bmp|width=500px!|AutoCAD Platform Program AlumStockScript]
Southwest Isometric View
{float}
*alumbarrels* - draws two barrels which will sit on top of the platform
alumbarrels <-- StockBarrels("alumplat{~}origin~, S{~}Drum~, T{~}Ap~, W{~}ApWalkway~, D{~}Drum~/2, H{~}Drum~)
\\
\\
*layerfreezeab* - [Layer{~}freeze~|AutoCAD Basics Layer] locks the layer "alumbarrels" so that it cannot be edited.
layerfreezeab <-- layer{~}freeze~("alumbarrels")
|