How to make 2D display of Door with Cross
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2014-04-16
11:23 AM
- last edited on
2023-05-24
10:50 AM
by
Rubia Torres
2014-04-16
11:23 AM
My first idea is to add the following scripts:
line2 -a/2,0,a/2, Wall_Thickness
line2 -a/2,Wall_Thickness,a/2,0
However it is apparent the parameter "wall_thickness" does not exist !
Any help?
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2014-04-16 03:31 PM
2014-04-16
03:31 PM
Kent:
This should work, and showed a cross when I pasted your code at the top of the 2D Script for the "Simple Door Opening" library part. Where in the script is the code added? Best would be to zip the library part and post it here so others can look at the entire library part.
David
This should work, and showed a cross when I pasted your code at the top of the 2D Script for the "Simple Door Opening" library part. Where in the script is the code added? Best would be to zip the library part and post it here so others can look at the entire library part.
David
David Maudlin / Architect
www.davidmaudlin.com
Digital Architecture
AC28 USA • Mac mini M4 Pro OSX15 | 64 gb ram • MacBook Pro M3 Pro | 36 gb ram OSX14
www.davidmaudlin.com
Digital Architecture
AC28 USA • Mac mini M4 Pro OSX15 | 64 gb ram • MacBook Pro M3 Pro | 36 gb ram OSX14

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2014-04-16 04:11 PM
2014-04-16
04:11 PM
WALL_THICKNESS is a GDL Global variable so it should be storing the thickness of the Wall the Window/Door is placed into.
Are you saying that the cross does not adjust to the Wall thickness of the Wall?
Can you attach a screenshot of the incorrect result?
Are you saying that the cross does not adjust to the Wall thickness of the Wall?
Can you attach a screenshot of the incorrect result?
Loving Archicad since 1995 - Find Archicad Tips at x.com/laszlonagy
AMD Ryzen9 5900X CPU, 64 GB RAM 3600 MHz, Nvidia GTX 1060 6GB, 500 GB NVMe SSD
2x28" (2560x1440), Windows 10 PRO ENG, Ac20-Ac28
AMD Ryzen9 5900X CPU, 64 GB RAM 3600 MHz, Nvidia GTX 1060 6GB, 500 GB NVMe SSD
2x28" (2560x1440), Windows 10 PRO ENG, Ac20-Ac28
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2014-04-16 07:57 PM
2014-04-16
07:57 PM
laszlonagy wrote:After modify the parameter "WALL_THICKNESS" as capital word instead of "Wall_Thickness", the scripts could work.
WALL_THICKNESS is a GDL Global variable so it should be storing the thickness of the Wall the Window/Door is placed into.
Are you saying that the cross does not adjust to the Wall thickness of the Wall?
Can you attach a screenshot of the incorrect result?
line2 -a/2,0,a/2,WALL_THICKNESS
line2 -a/2,WALL_THICKNESS,a/2,0
By the way, how to match the Cross Line's Style with the Contour's Line's Style. Thank you!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2014-04-17 03:06 PM
2014-04-17
03:06 PM
Kent wrote:You need to set the line type before the lines command:
By the way, how to match the Cross Line's Style with the Contour's Line's Style. Thank you!
SET LINE_TYPE gs_wcont_line_inor
SET LINE_TYPE gs_wcont_line_outdepending on whether you want to use the Inside or Outside line type.
To use the pen setting:
PEN gs_wcont_line_penNotice in the GDL main library window interface the Type column, which shows you the type of variable being used (line type, pen, etc).
Kent wrote:The upper or lower case makes no difference, even WaLl_ThIcKnEsS works, there must some other issue, sometimes invisible characters can be copied into the GDL script, creating unreadable lines.
[After modify the parameter "WALL_THICKNESS" as capital word instead of "Wall_Thickness", the scripts could work.
line2 -a/2,0,a/2,WALL_THICKNESS
line2 -a/2,WALL_THICKNESS,a/2,0
David
David Maudlin / Architect
www.davidmaudlin.com
Digital Architecture
AC28 USA • Mac mini M4 Pro OSX15 | 64 gb ram • MacBook Pro M3 Pro | 36 gb ram OSX14
www.davidmaudlin.com
Digital Architecture
AC28 USA • Mac mini M4 Pro OSX15 | 64 gb ram • MacBook Pro M3 Pro | 36 gb ram OSX14