Joe_Carrick

Members
  • Posts

    12040
  • Joined

  • Last visited

Posts posted by Joe_Carrick

  1. Tommy,

     

    Give me the dimensions and the panel style, etc and I'll knock it out for you.  Also, does this need to have a wood grain following the rails, stiles and panel separations or is a solid non-directional material OK?

  2. Yeah,  I had a feeling there was an issue with that.

     

    I still do not know how he did what he did.

    I would say that he probably used roof planes sloped the opposite direction - but in order to have the normal roof structure there would need to be invisible walls and maybe a second floor where the attic exists.

     

    Another option would be to create the walls, convert them to symbols and rotate them to the desired slope - but you would still need the invisible walls and some wall editing.

  3. Mike,

     

    Try the following.  It subtracts 1-5/8 from the width.  The it breaks that into inches and fractions and formats it to the nearest 1/8".  If you want the result to the nearest 1/16" just change the (8's) in line 3 to (16's).

     

    w = width-1.625

    inches = w.floor

    frac = (w.remainder(inches)*8).round.quo(8)

    case

      when frac == 1

        result = "#{inches + 1}"

      when frac == 0

        result = "#{inches}"

      else

        result = "#{inches} #{frac}"

      end

    result

  4. You might have to modify this a bit depending on what you want for rounding.

    Basically, you need to calculate the result before the formatting.  For fractions you would need to use another divmod of one of the array values.

     

    w = width-1.625

    arr = w.round.divmod(12)

    "#{arr[0]}#{arr[1].round}"

     

    If you can give me an example of a width and what you want the final output to look like I can give you a perfect macro.

  5. Why do 3D P-Lines only show that single useless line?

    I don't know.  But personally, I've found very few cases where I needed a "3D Molding Polyline.  I can see a use where there's an exterior railing wall that goes up along a stairway, then continues horizontal for a few feet and then turns at an angle left or right.  In that case if I wanted a molding cap to follow the top of the wall I would use a "3D Molding Polyline" but otherwise I always use the "2D" variety. 

  6. Larry,

     

    If you made that in an elevation view - just use a "Molding Polyline", not a "3D Molding Polyline".  You only need a "3D Molding Polyline" when all points are not on a common plane.

    IAE, moving it is as easy as selecting it, click on Transform/Replicate and Move it. 

     

    Note:  To move any Polyline you must be in the View in which it was created - unless you use Transform/Replicate.

     

    Note 2:  You can "Convert to Symbol" in any 3D View, including Elevations/Sections.

  7. Is this what you are looking for?

    post-47-0-48956500-1423080805_thumb.jpg

     

    Note:  I did this with 3 Molding Polylines, not a Polyline Solid. 

    The Molding Polylines are drawn in Plan View and each is assigned a different height and Molding Shape to fit:

       1.  Below the Window

       2.  At the Window

       3.  Above the Window

     

    If you need something more complex then I would model it using Primitive Solids and the Boolean Operations.  Since I don't know exactly what the end result should be, it's difficult to give you the best possible way of doing it.

  8. Greg,

     

    Chief doesn't do "Sloped Walls" but you can use a Roof Plane.  However, there's no way to insert a door or window into a Roof Plane.

    Attach a pic of what you want it to look like and we can help.  Otherwise we can't help you do what you want.

     

    Even better, also attach your plan.

  9. Glenn,

     

    Yes, it can be done and Yusuf showed us how to get a curved handrail - but both are extra work.

    You can control the Top and Bottom of the Stringer but not the width.  Sometimes I want a thin (1/4"-1'2" metal) closed stringer at the outside edge of the spiral.

     

    Opening - No Material is a possible solution but might be a problem if I want a Stringer on one side only.

     

    CA could do this with some changes to the current Stairs Tool.

  10. Sometimes we need to modify one of Chief's Library Symbols --- Core, Bonus, Manufacturer --- but Chief doesn't give us access to that directly.

     

    There are 2 ways we can make such changes and have the modified Symbol available for future use:

     

    1.  Place the Symbol in the Plan - make the changes to the Symbol dbx - Add the Symbol to the User Library.

    2.  Copy the Symbol fro Chief's Library to the User Library - make the changes to the Symbol dbx directly.

     

    The result is the same in both cases.

     

    In some cases you might want to add more 3D objects (shapes) to the symbol.  In that case you would place Chief's Symbol in a blank plan, add the 3D objects and "Create a new Symbol".  You will need to set all the Symbol parameters in the dbx since they will not automatically be transferred from the original symbol.

     

     

  11. Is it possible to make tall cabinet if you have an angled wall like this one in the screenshot?Don't know how and why, but most of my projects come with these damn corners.

    The answer is partially, but most cabinet makers would just make it square at both ends and provide a filler at the right side.

  12. anybody have an idea of how to make a cabinet curve fully? meaning if I have a curved wall, and i want the cabinets back to curve with the wall,  is that possible?

    No, it isn't.  I must tell you that even the cabinet companies don't do that.  99% of the time you would have a series of cabinets (square sides) and only the top would match the wall.  End panels could be added to be perpendicular to the wall

  13. I've done some snow scenes using some small symbols made from custom countertops with quarter round edge moldings (white for snow) which I used in a material region.  By setting the spacing and offsets you can get very smooth and/or lumpy snow.  For the Roof, I made a similar symbol which was set as "flush mounted on roof" (2 options for exterior fixtures).  By using different thicknesses you can change the snow depth.

     

    The material regions allow you to limit where the "snow" exists and where it doesn't.  If the symbols are defined on their own custom layer you can simply turn of that layer to change to a different season.