cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 
GDL
About building parametric objects with GDL.

Can I hide the outline of a Cylinder / Elbow?

JGoode
Expert

Hi,

 

I've created a grab rail using a series of cylinders and elbows. I'd really like to hide the outlines where the cylinders and elbows join. Is this possible?

 

Many thanks

ArchiCAD 27

Windows 10
2 REPLIES 2
Jochen Suehlo
Moderator

No, I think this is not possible. You can use the TUBE command instead, there are no connection lines.

Jochen Suehlo . AC12-28 . MAC OSX 14.4 . WIN11
GDL object creation: b-prisma.de
You can use solid elements operations to hide junctions.
 
dim groups[] !create groupnames
for i= 1 to 5
groups[i]="cylind"+str("%.0m",i)
group groups[i]
addz (i-1)*5
cylind 5,1
del 1
endgroup
next i

result_cylinds=groups[1]  !first group
for i=2 to vardim1(groups)
result_cylinds=addgroup(result_cylinds,groups[i])
next i
placegroup result_cylinds

killgroup result_cylinds
for i=1 to vardim1(groups)
killgroup  groups[i]
next i
- AC-24 FIN - WIN 10 - HP Zbook -
“A winner is just a loser who tried one more time.”
George M. Moore, Jr.

Didn't find the answer?

Check other topics in this Forum

Back to Forum

Read the latest accepted solutions!

Accepted Solutions

Start a new conversation!