Joe_Carrick

Members
  • Posts

    12061
  • Joined

  • Last visited

Everything posted by Joe_Carrick

  1. Kate, Have you tried contacting the furniture mfr to see if they have a 3D file?
  2. I think the key is to look at the cursor coordinates (3D) vs the line coordinates (2D) in a left or right side Elevation View. But then, take a section view at a 45 degree angle and look at those coordinates. I'm not sure there's really a good way to reconcile the 2D CAD to a 3D Coordinate system.
  3. That is 100% correct. jpegs and pngs are not 3D so there's no way to import them as symbols. OTOH, you can use them as "Images"placed in the model.
  4. Chief's lines and arcs are 2D CAD - they don't have 3D coordinates. They only exist in the x/y coordinate system of the view - but there could be a point made that when in a Elevation/Section view the vertical direction should be "z". For sure the x coordinate of a line in an Elevation/Section view has no coordination with the x/y coordinate system of the Plan View. I think the reality is that when using 2D CAD you have to look at the coordinates relative to the screen, not the 3D model space.
  5. Dave, When you modify the Floor Elevation you also have to take into account the Room Ceiling Height. I find it's best to start from the top of the structure and work down, making sure I have all the relationships correct - including the floor structures.
  6. AFAIK there's no such appliance. I'm not talking about a symbol - that could be done but I don't know of any appliance manufacturer that makes a 36" over the range microwave. 30" is the max.
  7. What's the outside source? Do you have a 3D file such as SKP or 3DS?
  8. Joe to the rescue ;) It's a piece of cake just relying on the correct macros.
  9. As I thought - as well as my experience - it''s almost totally random. So any solution to automate the calculation needs to be very flexible.
  10. I have been told that in some jurisdictions the Garage is included in the FAR and in some jurisdictions it isn't. I've also been told that some jurisdictions only include the Living Area while some count everything including unfinished basements. What do you have to include and what can you exclude?
  11. Only way that's going to happen with Chief's built-in macros is to have a different one for each. btw, I can do it as a user preference. ;)
  12. I got it - I'm out of town and will respond on Monday afternoon.
  13. Lew, Until CA decides to actually ask what the output should be - and has the resources to provide custom programing............ They won't know what to fix or how to fix it. This particular item is a matter of rounding to 7 decimal places. That's obviously way to many - but how many places should it be 0,1,2,3 ? I would bet there are as many who will say 3 as will say 0 as will say 2.
  14. Sorry, not for Slabs or Countertops but check this
  15. BTW, some Polyline based objects (Roads, Driveways, Sidewalks, Slabs, Countertops, etc) have Default Labels that you can assign a macro to so that any time you create one of those objects it is automatically labeled. All of those have the area attribute.
  16. only if you wanted to perform additional calculations. A macro returns the value of the last line. So if you wanted to multiply by some other value you could do this: x = area.round(0) x/3 which would display 1/3 of the area but that wouldn't be rounded. If you wanted the result rounded you would change it to: x = area (x/3).round(0) or you could write the macro as (area/3).round(0)
  17. Scott, You might want to look at the June2016 Macro of the Month - Area_Perimeter_Volume since it already does all three (2 decimal places)
  18. OK guys, Create an "Owner Context" - "Evaluated" macro named "Area Rounded" with the following contents: x = area.round(0) then use that macro in the Polyline Label. I agree that 7 decimal places is too much and Chief should change that to 2-3 decimal places but with a user macro you have control. In addition, you actually get the numerical value so it's possible to do math calculations within the macro.
  19. Only by using a user macro instead of the one Chief provides. This has been discussed before and the macro posted in another thread. Search the forum
  20. I know one of the guys is using a 50" 4K TV. I think it's Bill Emery and there was a discussion in the old Chieftalk. I've been considering getting one and mounting it on a drafting table so I can stand - or sit on a stool - and be looking down. That position really relieves the neck and shoulder strain. The increased real estate should eliminate any need for a second monitor.
  21. The Macro for July 2016 is Floor Name. It displays in a Text Box the Floor Name as follows: Level 0 --- BASEMENT PLAN or FOUNDATION PLAN if there's no Living Area on Level 0 Level 1 --- FIRST FLOOR PLAN Level 2 --- SECOND FLOOR PLAN Level 3 --- THIRD FLOOR PLAN ETC. Up to TENTH FLOOR PLAN
  22. Agreed. AFAIK, it's just the way it is. I'm not sure if it ever worked correctly.
  23. Create a Rich Text Box and add the "room" macros (room.name, room.dimensions, etc) that chief supplies in them. You then have total control of the fonts, sizes, colors, border and fill. When you place that RTB in any room it will pick up the data from the room and display it. If there isn't enough space in the room for the label you can just add an arrow to the RTB to get the room data.