Results 1 to 15 of 15

Threaded View

  1. #9
    Join Date
    Jan 2007
    Location
    San Marcos, CA
    Posts
    6,805
    Quote Originally Posted by Gene Davis View Post
    Well I'll be darned. I draw a roof plane, open it for spec, and type into the box that says, "Pitch (in 12)", "12 in 16," and Chief returns, "12." The roof plane pitches to 12:12, or 45 degrees. I then respecify, I type, "12:16," and Chief returns, "28"" Things get steep.

    I enter "12/16" and Chief returns "3/4"" Real shallow.

    What setting am I missing?
    You don't understand because you are not a programmer. Here is the programming method:

    value of "12 in 16" is 12.00 (everything after the 12 is ignored)
    value of "12:16" is 12+16 = 28.00 (something in the program changed the : to a +
    value of 12/16 is 3/4

    These things are only understood based on the programming language. Basically all of your examples are handled as a text string and in order to determine a numerical value of the text a subroutine is called. It's the subroutine that looks at each character and constructs a numerical value. Programatically that would look like:

    nValue := val("12 in 16") = 12
    nValue := val("12")+val("16") = 28 // note: programmer replaced the : with a +
    nValue := val("12")/val("16") = 3/4
    Last edited by Joe Carrick; 12-19-2012 at 02:20 PM.
    Joseph P. Carrick, Architect - AIA
    ASUS M51AC Desktop, core i7-4770 CPU @3.4 GHZ, 16 GB Ram, NVidea GT640 with60M with 3GB GM, 30" HiRes (2560/1600) Monitor , (2) 24" ASUS Monitors
    Windows 8.1
    Chief Architect 9, 10, X1, X3, X4 Premium, X5 Premium, X6 Premium

 

 

Posting Permissions

  • Login or Register to post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •