We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2021-02-04 03:07 AM - last edited on 2021-09-14 01:26 PM by Noemi Balogh
!ROUND HOTSPOT 0,0,0 MATERIAL Material_color !PLATE ROTX 90 CYLIND .5", W/2 !BRACKET ADDZ .5" CYLIND 2", .625" ADDZ 2" CYLIND 4", 3/8" !CONNECTION ADDZ 4" ROTZ 270 ELBOW 1.5", 90, 3/8" ADDZ 1.5" ADDX 1.5" ROTY 90 CYLIND 1", .5”
2021-02-05 02:20 AM
potterandrew wrote:
The line was still visible for me when using the group command between the CYLIND and ELBOW.
potterandrew wrote:
The PRISM_ and REVOLVE worked perfectly for everything except the front elevation view. Now there is no line where the spout meets the wall bracket. I tried to solve it with changing the status code but it seems that both ends of the PRISM_ are either visible or hidden. Is there a status code i'm missing to just make the back line visible and leave the front line off?
!ROUND HOTSPOT 0,0,0 MATERIAL Material_color !PLATE ROTX 90 CYLIND .5", W/2 !BRACKET ADDZ .5" CYLIND 2", .625" !SPOUT ADDZ 2" ROTZ 270 !!!!new extra prism added for spout line.******************************* PRISM_ 7, 0.00001, 3/8"+0.0001, 0.0, 15+64, 0, 0.0, 900, 0, 180, 4015+64, -3/8"-0.0001, 0.0, 11+64, 0, 0.0, 900, 0, 180, 4015+64, 3/8"+0.0001, 0.0, -1 !!!!new extra prism added for spout line.******************************* PRISM_ 7, 4", 3/8", 0.0, 11+64, 0, 0.0, 900, 0, 180, 4011+64, -3/8", 0.0, 11+64, 0, 0.0, 900, 0, 180, 4011+64, 3/8", 0.0, -1 ROTz 90 ADD 0, -1.5",4" REVOLVE 7, 90, 1*0+2*0+4*0+16*0+32*1+64*0, 3/8", 1.5", 1, 0, 1.5", 900, 0, 180, 4011+64, -3/8", 1.5", 1, 0, 1.5", 900, 0, 180, 4011+64, 3/8", 1.5", 1 ADDZ 1.5" ROTX 90 CYLIND 1", .5" END
2021-02-05 02:54 AM
!!-------------set variable, but these should be parameters dSpout = .160 radSpout = .025 curveSpout = .070 put 0, .060/2, 0 put .012, .060/2, 0 put .012, radSpout/2 +.005, 0 put .060, radSpout/2 +.005, 0 revolve nsp/3, 360, 1+2+4+8+16+32, get(nsp) !!-------------------tube profile cntNSP_1 = 0 put 0, 0, 901: cntNSP_1 = cntNSP_1 +1 put radSpout/2, 360, 4001: cntNSP_1 = cntNSP_1 +1 !!-------------------tube path cntNSP_2 = 0 put .059, 0, 0, 0: cntNSP_2 = cntNSP_2 +1 put .060, 0, 0, 0: cntNSP_2 = cntNSP_2 +1 for n = 0 to 90 step 90/(ceil(90/(360/gs_resol))) put dSpout +curveSpout*sin(n), 0, -curveSpout +curveSpout*cos(n), 0: cntNSP_2 = cntNSP_2 +1 next n put dSpout +curveSpout*sin(91), 0, -curveSpout +curveSpout*cos(91), 0: cntNSP_2 = cntNSP_2 +1 tube cntNSP_1, cntNSP_2, 1+2+16+32, get(nsp) !!--------------------nossle add dSpout +curveSpout, 0, -curveSpout roty 90 put .000, radSpout/2 +.003, 0 put .030, radSpout/2 +.003, 0 revolve nsp/3, 360, 1+2+4+8+16+32, get(nsp) del 2
2021-02-05 03:00 AM
Barry wrote:You weren't wrong. it can be done using the ADDGROUP{2} command which enables you to smooth the lines. it works really well especially when carving out a toilet geometry which curves in multiple directions.
Joachim wrote:Sorry I was wrong about the grouping will merge the lines.
Barry: You can 'Group' them and they will mergeHow does this work with GROUP commands?
I could have sworn I had done that before, but it seems not.
2021-02-05 03:12 PM