solver

Members
  • Posts

    12268
  • Joined

  • Last visited

Posts posted by solver

  1. ct1.thumb.png.033a7e025f15e2ddf207dc8d00a4d894.png

     

    From glennw

     

     

    Open the room specification dbx for the upper floor that is cantilevering.

    Go to the Materials panel and select Cantilever underside.

    Select Material.

    Plan Materials.

    Scroll up to the top of the materials list.

    There is an option called "No Material".

    Note that you have to double click "No Material" to get it to stick, you can't use OK (at least this applies to my mac).

    Also note that this is not a material like "Opening (no material)" - it literally means "no material". 

     

    New Image_124.jpg

    •  

    Glenn

    • Upvote 3
  2. How did you place these? That seems like the tricky part of this process.

     

    ct1.thumb.png.5327914c2dd771247a196c0569b9d612.png

     

    Here is what I did. Took the radius of the ceiling and placed a point there. Selected the center trim and copied/rotated it around the point. Taking a couple of angles gave me the info needed to space things evenly.

     

    ct2.thumb.png.47619f911d62d0357c9694b1e9ac43de.pngct3.thumb.png.693a5a1f810c4fa3f60f389590aeb8a4.pngct4.thumb.png.8da9dbb8f8d6dc76278b9c7b172e89c7.png

    • Like 1
  3. ct1.thumb.png.f8ad72e28a372c71faba179f259254ec.png

     

    Molding Polyline arched to match ceiling. Converted to a symbol.

     

    Used it as a background to draw a profile against so I could match the curve. Converted profile to a p-solid.

     

    Placed the center p-solid, then placed a point marking the radius. Used Transform/Replicate to copy and rotate the p-solid about the point.

     

     

    • Like 1
    • Upvote 1
  4. 16 minutes ago, solver said:

    If you make this from a p-solid, or a symbol from a molding, you may be able to copy and rotate around the radius of the ceiling.

     

    Looks like a p-solid can be rotated in elevation, but not a molding or symbol -- can't seem to select them.

    • Like 1
  5. Draw Arc in elevation following ceiling.

     

    Convert Curve To Polyline to increase the number of segments making the molding smooth.

     

    Convert to 3D Molding Polyline.

     

    Space as required.

     

    I might make the molding into a symbol for easier placement.

     

    For the pieces running front to back, you will need a profile with a curved bottom. If you make this from a p-solid, or a symbol from a molding, you may be able to copy and rotate around the radius of the ceiling.

    • Like 1
  6. On 7/5/2018 at 2:14 PM, MarkMc said:

     

    Short version is-
    I'm looking for a way to trim the beginning and the end or a string with Ruby.
    Part to trim at the beginning is ">qty>" where qty may be one or two integers-so I need to trim between 3 and 4 characters depending.
    Part to trim at the back is ">price>" where price may be one, two or three integers. (need to trim between 3 and 5 characters)

     

     

    Quick test using gsub and a regular expression (pattern to match).

     

    # define a test string

    x='>abc>123>xyz>456789>'

     

    # pattern is delimited by /

    # search for a > followed by any number of digits followed by > and the end of string (the $ sign is end of string)

    # find the matching pattern and replace it with nothing (2 single quotes)

    # create a new string y
    y=x.gsub(/>[0-9]*>$/,'')

     

    # return the original string and the modified one
    x+"\n"+y

     

    # ^ is the start of string, so /^>[0-9]*>/ would match the same string at the beginning instead of the end.

     

    • Upvote 1
  7. I can verify your results. I checked one of my plans started in X8 that was similar and it looks OK in X10, where your plan does not.

     

    Good looking house with plenty of effort in the details. I was curious what an all gable version might look like.

     

    ct1.thumb.jpg.a674b35940a1c2fa3a6722eb1276e8e3.jpgct2.thumb.jpg.dfd2e44734fa2d2c5f36323dd17ea66c.jpg

     

    There is something odd happening with the frieze even with all these changes. Notice the bright piece on the garage. If I paint it, it, along with other pieces elsewhere on the house disappear. I was working in X9.

     

    I'll also make a couple of suggestions. Consider doing your curved roofs as a single roof plane. Pitch at 0", then create the curve. Also setting the facet angle to 3 or so will make them smoother.

     

    You have used solids to create exterior trim and other, where I might use molding polylines. Easy to change position and profile.

  8.  

    There are 4 walls used here.

     

    ct1.thumb.jpg.e16e709f4356212ebb7c315f6cc3094a.jpg

     

    Starting on the left.

     

    The red wall is a pony wall shaped in elevation. (see my post further down for more info)  The lower wall is a single layer of drywall that's there to cap the bottom of the wall. Using a Glass House view lets you see the stairs for alignment.

     

    The green railing wall is No Room Definition. Draw it off to the side, make sure Follow Stairs in not checked, then center it on the other walls.

     

    The blue wall is a normal wall.

     

    The orange wall is a railing set to Follow Stairs.

    • Upvote 3