GettingStartedInputFile.tcl -– Model: Plans: Difference between revisions
Jump to navigation
Jump to search
(New page: ---- Return to BuildingTcl) |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | |||
[[Image:BuildingTclLogo.gif|link=BuildingTcl|right]] | |||
<source lang="Tcl"> | |||
# Plan | |||
addModelData ModelLabel 2x2Floor | |||
addModelData ModelDescription "1-Bay by 1-Bay Floor Plan" | |||
addModelData ModelTypeLabel Plan | |||
addModelData iVerticalGridLineLabel "0.0 10.0 25.0" | |||
addModelData iHorizontalGridLineLabel "A B C" | |||
addModelData -HorizontalBayWidth Bay 1 Width 20*\$ft | |||
addModelData -HorizontalBayWidth Bay 2 Width 30*\$ft | |||
addModelData -VerticalBayWidth BayRange "1 2" Width 5*\$ft | |||
addModel | |||
</source> | |||
---- | ---- | ||
Return to [[BuildingTcl]] | |||
Return to [[Getting Started with BuildingTcl]] |
Latest revision as of 17:49, 30 October 2009
# Plan
addModelData ModelLabel 2x2Floor
addModelData ModelDescription "1-Bay by 1-Bay Floor Plan"
addModelData ModelTypeLabel Plan
addModelData iVerticalGridLineLabel "0.0 10.0 25.0"
addModelData iHorizontalGridLineLabel "A B C"
addModelData -HorizontalBayWidth Bay 1 Width 20*\$ft
addModelData -HorizontalBayWidth Bay 2 Width 30*\$ft
addModelData -VerticalBayWidth BayRange "1 2" Width 5*\$ft
addModel
Return to Getting Started with BuildingTcl