display values for GDL 2d lines?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-01
08:09 AM
- last edited on
‎2023-05-24
12:12 PM
by
Rubia Torres
I see the various POLY2_ objects have updated status codes notes explaining how to set values for cut and cover fills, but can't find anything about lines...?
I did try to drag and drop some various 2d lines into the 2d Script window, thinking I could see the script that way, but no luck: I gather that only works for 3d objects?
Win10 64bit Intel i7 6700 3.40 Ghz, 32 Gb RAM, GeForce RTX 3070
AC 27.0 (4001 INT FULL)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-22 01:47 PM
Next, though I'm sure you won't have the least idea what I'm talking about, 2d line properties can be scripted with LINE_PROPERTY 0, 1 or 2.
Somebody check this guy's credentials.
Win10 64bit Intel i7 6700 3.40 Ghz, 32 Gb RAM, GeForce RTX 3070
AC 27.0 (4001 INT FULL)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-22 06:44 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-22 10:47 PM
LINE_PROPERTY expr
expr values
0: all lines are generic lines
1: all lines are inner
2: all lines are contour
Can anyone give an example of how this works?
John Hyland : ARINA : www.arina.biz
User ver 4 to 12 - Jumped to v22 - so many options and settings!!!
OSX 10.15.6 [Catalina] : Archicad 22 : 15" MacBook Pro 2019 [/size]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-23 03:01 AM
LINE PROPERTY 0 ---- [Drafting Line] Under any option, 2d line will be displayed. It will respond to Line Weight change but not Bold Cut Line.
LINE PROPERTY 1 ---- [Skin Seperator Line] If Cut Fill option is set to "No Fill" or "Solid w/o Seperation Lines", 2d line will not be displayed. It will respond to Line Weight change but not Bold Cut Line.
LINE PROPERTY 2 ---- [Cut Line] Same as LINE PROPERTY 0 except it will respond to Bold Cut Line.
Again, Graphisoft need to make the manual more infomative!!!!!!!!!!!

Win 10, Archicad 19 INT

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-23 08:25 AM
PEN 5
LINE_PROPERTY 2
LINE2 0,0, 1.00, 1.00
The 2 value means it will appear as a bold line using hairline display. It doesn't affect the actual line weight for publication, but I find it useful and certainly easier on the eyes.
Win10 64bit Intel i7 6700 3.40 Ghz, 32 Gb RAM, GeForce RTX 3070
AC 27.0 (4001 INT FULL)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-29 05:23 AM
Currently the only way you seem to be able to do this is using a DEFINE FILL [FILLTYPES_MASK] which is a command for masochists.
Archicad 27 / Mac Studio M1 Max - 32 GB / LG24" Monitors / 14.5 Sonoma

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-12-29 08:06 AM
Vitruvius wrote:Its done with the frame_fill variable and the mask values for each node: here's two identical fills, created in ArchiCAD and then dragged into a GDL 2d script window:
Does anyone know if there is a similar function for fills?
SET FILL "Grass"
POLY2_B{2} 5, 35, 57, 0,
0, 0, 0,
0, 0, 1,
2, 0, 1,
2, 2, 1,
0, 2, 1,
0, 0, 1
SET FILL "25 %"
POLY2_B{2} 5, 3, 57, 0,
0, 0, 0,
0, 0, 33,
2, 0, 33,
2, 2, 33,
0, 2, 33,
0, 0, 33
The first "grass" fill has a drafting contour and the second, "25%" has a cut contour. You can see the different values for frame_fill and the mask value for each node. See POLY2_ in the GDL manual.
Win10 64bit Intel i7 6700 3.40 Ghz, 32 Gb RAM, GeForce RTX 3070
AC 27.0 (4001 INT FULL)