Home › Forums › Problems and solutions in GDL › Doors and windows › Opening Lines with MVO
- This topic has 2 replies, 2 voices, and was last updated 5 years, 7 months ago by
James Murray.
-
AuthorPosts
-
-
October 6, 2016 at 17:18 #2756
James Murray
ParticipantHow do we request the state of the Opening Lines checkboxes under Miscellaneous Settings in MVO? In the AC Library windows, the boolean for building these lines is bOplines3d, but I can’t find where that switch is set. It’s not a parameter set by AC either.
James M
-
October 6, 2016 at 20:13 #2757
Joachim Sühlo
ParticipantYou mean something like this:
! — MVO: 3D Öffnungslinien an/aus
bOplinesTemp = 0
success = LIBRARYGLOBAL (“LibraryGlobals13”, “D_showBOpLine3D”, bOplinesTemp) ! Door
if success > 0 and bOplinesTemp <> 0 then
bOplines = bOplinesTemp
ENDIF! — MVO: Öffnungslinientyp 3D Öffnungsseite
success = LIBRARYGLOBAL (“LibraryGlobals13”, “gs_opline_type_m”, reqIOplineTypeTemp)
if success > 0 then
gs_opline_type_m = reqIOplineTypeTemp
endif! — MVO: Öffnungslinientyp 3D gegenüberliegende Seite
success = LIBRARYGLOBAL (“LibraryGlobals13”, “gs_opline_type_m_out”, reqIOplineTypeOutTemp)
if success > 0 then
gs_opline_type_m_out = reqIOplineTypeOutTemp
endif! — MVO: Öffnungslinientyp 3D für Nebentürblatt
success = LIBRARYGLOBAL (“LibraryGlobals13”, “D_iOpLineType2”, reqOplineType2)
if success > 0 then
iOplineType2 = reqOplineType2
endif! — MVO: Öffnungslinienstift 3D
success = LIBRARYGLOBAL (“LibraryGlobals13”, “D_opLinePen”, reqOplinePen)
if success > 0 then
gs_opLinePen = reqOplinePen
endifIF (bOverride_MVO_3D AND or_bOplines3d) OR (NOT(bOverride_MVO_3D) AND bOplines ) THEN
IF (bOverride_MVO_3D AND or_bOplines3d) THEN
temp_opLineType3dIn = or_iOpLineType3dIn
temp_opLineType3dOut = or_iOpLineType3dOut
gs_opLinePen = or_opLinePen
gs_opline_style_m = gs_opline_style_m
ENDIFIF (NOT(bOverride_MVO_3D) AND bOplines ) THEN
temp_opLineType3dIn = gs_opline_type_m – 1
temp_opLineType3dOut = gs_opline_type_m_out – 1
gs_opLinePen = gs_opLinePen
gs_opline_style_m = gs_opline_style_m
ENDIFENDIF
GDL Object Developer
b-prisma
MAC OSx 10.14 -
October 6, 2016 at 22:52 #2758
James Murray
ParticipantThat could be the hint I needed. Thanks Joachim.
James M
-
-
AuthorPosts
- The forum ‘Doors and windows’ is closed to new topics and replies.