h3. Chlorine Stock Script
*layernewcp* - [Layer{~}new~|AutoCAD Basics Layer] creates a new light grey layer, "chlorineplatform"
layernewcp <-- layer{~}new~("chlorineplatform", ltgrey)
{float:left|border=2px solid black}
[!1.bmp|width=500px!|AutoCAD Platform Program ChlorineStockScript]
Southwest Isometric View
{float}
*chlorineplatform* - draws a platform which the chlorine barrels will sit on
chlorineplatform <-- StockPlatform("chlorineplat{~}origin~, S{~}Drum~, T{~}Cp~, W{~}CpWalkway~, chlorineplatcol{~}dim~, D{~}Drum~/2)
\\
\\
*layersetc* - [Layer{~}set~|AutoCAD Basics Layer] selects the layer "0".
layersetc <-- layer{~}set~("0")
*layerfreezecp* - [Layer{~}freeze~|AutoCAD Basics Layer] locks the layer "chlorineplatform" so that it cannot be edited.
layerfreezecp <-- layer{~}freeze~("chlorineplatform")
*layernewcb* - [Layer{~}new~|AutoCAD Basics Layer] creates a new blue layer, "chlorinebarrels".
layernewcb <-- layer{~}new~("chlorinebarrels", blue)
{float:left|border=2px solid black}
[!2.bmp|width=500px!|AutoCAD Platform Program ChlorineStockScript]
Southwest Isometric View
{float}
*chlorinebarrels* - draws the barrels which will sit on top of the platform
chlorinebarrels <-- StockBarrels("chlorineplat{~}origin~, S{~}Drum~, T{~}Cp~, W{~}CpWalkway~, D{~}Drum~/2, H{~}Drum~)
\\
\\
*layerfreezecb* - [Layer{~}freeze~|AutoCAD Basics Layer] locks the layer "chlorinebarrels" so that it cannot be edited.
layerfreezeab <-- layer{~}freeze~("chlorinebarrels")
|