You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried 4 times, restart Julia and ran this two lines from beginning of section 8 box(point) = Box(point - Vec(2.5, 2.5, 2.5), point + Vec(2.5, 2.5, 2.5)) box.(gt.geometry)
first time it gave me no method for Box()
second time same error, so I searched Box() syntax in section 4 and added "()" for both 1st and 2nd arguments.
box(point) = Box(point - Vec(2.5, 2.5, 2.5), point + Vec(2.5, 2.5, 2.5))
fails
box(point) = Box((point - Vec(2.5, 2.5, 2.5)), (point + Vec(2.5, 2.5, 2.5)))
works
I think "()" are missing for both first and second arguments in Box()
The text was updated successfully, but these errors were encountered: