2025-04-24 04:24 PM
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
2025-04-25 10:26 AM
No, I think this is not possible. You can use the TUBE command instead, there are no connection lines.
2025-04-26
08:27 AM
- last edited on
2025-04-26
09:17 PM
by
Laszlo Nagy
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