Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
⚠️ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
Camera.set() and Camera.new() -
-
The API doc for
Camera.set()isn't right.Camera.set(), as the name implies, sets the camera. It might have been better to call itCamera.set!(). It does not return a reference to a new Camera object.Camera.new()returns a reference to a new Camera object and should not be deprecated.c = cam.set( ... ) c == cam # trueThe code example
camera = camera.set ...is bad practice. Thecamera =part should be discarded.Anyone with a copy of my Chapter 16 and its associated code should get a new copy.
Advertisement