2005-10-19 10:12 PM
2005-10-19 10:42 PM
Zobi wrote:in the 'options' settings you can control the 2D/3D level of detail manually or automatically (scale sensitive).
hmm...I'd like the windows to look one way in plan, without any casing, and with a sill on the ext. only...BUT in S/E, I'd sure like to have the casing visible. Any clever thoughts on how to do this, simply and easily?
2005-10-19 10:57 PM
2005-10-19 11:01 PM
lod2D = 0 ! Don't draw anything if gs_detlevel_2D = stDetail[3] then lod2D = 2 ! Simple if gs_detlevel_2D = stDetail[2] then lod2D = 4 ! Detailed if gs_detlevel_2D = stDetail[1] then ! Scale sensitive lod2D = 4 if GLOB_SCALE > 50 then lod2D = 3 !! HUN !! if GLOB_SCALE > 100 then lod2D = 1 endif if lod2D = 0 then endthen you need to adjust that LOD value up or down for each macro call, depending on whether you want more or less detail for that component
! ===== Draw Trim and Sill ===== if not(bFeedBack) then call "WindowSillTrim" parameters A = AA, < list of parameter settings follows >and find this line in the 'parameters' command:
! --- 2D Representation lod2D = lod2D,and change it to something like this:
! --- 2D Representation lod2D = lod2D + 1, ! this increases LOD by 1change the LOD values at each point in the script that you want a different level of detail from the overall LOD.
2005-10-19 11:05 PM
2005-10-19 11:18 PM
2005-10-19 11:48 PM
2005-10-20 12:07 AM