sketch11 Posted January 9, 2023 Posted January 9, 2023 I often import PDFs and scale using a fraction, such as "8/0.1234567". But this won't work and I have to use "80000000/1234567". Is there a setting that would allow the first method. Quote
tombu Posted January 25, 2023 Posted January 25, 2023 No, you can use a fraction or decimal not both. There's a rational numbering system and a decimal numbering system, the one you want doesn't exist. You could enter 'CAL at the command line then enter 8/0.1234567 to get 64.8000473 returned. 1 Quote
ketxu Posted March 7, 2023 Posted March 7, 2023 Or you could use lisp function at commandline when input scale ratio : (/ 8 0.1234567) 2 Quote
sketch11 Posted March 7, 2023 Author Posted March 7, 2023 OK, is there a lisp function available? Quote
tombu Posted March 7, 2023 Posted March 7, 2023 3 hours ago, sketch11 said: OK, is there a lisp function available? Similar to using 'CAL just enter what ketxu posted for the scale at the command line. I doubt either would work in a dialog box. That's a very odd scale though. 1 Quote
Steven P Posted March 7, 2023 Posted March 7, 2023 when you use scale, going through the options it will ask for a scale - where you'd normally type '80000000/1234567' You can use this instead ( / 8 0.123456789) which is the LISP code for 8 / 0123456789 - as above scale -Select Object -Select Base Point ( / 8 0.123456789) 1 Quote
sketch11 Posted March 8, 2023 Author Posted March 8, 2023 Thanks for clarifying tombu, Steven P, and also for the code ketxu. 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.