cutting in 3D

Discussion in 'AutoCAD' started by Shaun Van Poecke, Jun 5, 2007.

  1. hi all,
    whats the best command to use when trying to cut one object with another,
    where the point at which they join is a bit too complex to use 'slice'? I
    have had good success using 'subtract' but then one of my solids is gone.
    is there a similar command that will slice one solid where it meets a second
    solid, but leave them as seperate entities?

    Thanks,
    Shaun
     
    Shaun Van Poecke, Jun 5, 2007
    #1
  2. Patrick Hughes, Jun 5, 2007
    #2
  3. Shaun Van Poecke

    longshot Guest

    you can do many slices, keeping both sides of the slices, then erase what
    you wish & union the rest back together!
     
    longshot, Jun 5, 2007
    #3
  4. Shaun Van Poecke

    Mason Guest

    INTERFERENCE

    This create a THIRD composite 3D solid from the common volume of two or more solids.
    hi all,
    whats the best command to use when trying to cut one object with another,
    where the point at which they join is a bit too complex to use 'slice'? I
    have had good success using 'subtract' but then one of my solids is gone.
    is there a similar command that will slice one solid where it meets a second
    solid, but leave them as seperate entities?

    Thanks,
    Shaun
     
    Mason, Jun 6, 2007
    #4
  5. Shaun Van Poecke

    clip Guest

    wow mason, that sure is an invite to 'do-drop-in' fer a look type of post,
    can you heal the sick and raise the dead too...........
    INTERFERENCE

    This create a THIRD composite 3D solid from the common volume of two or more solids.
    hi all,
    whats the best command to use when trying to cut one object with another,
    where the point at which they join is a bit too complex to use 'slice'? I
    have had good success using 'subtract' but then one of my solids is gone.
    is there a similar command that will slice one solid where it meets a second
    solid, but leave them as seperate entities?

    Thanks,
    Shaun
     
    clip, Jun 6, 2007
    #5
  6. Shaun Van Poecke

    Mason Guest

    SARCASM IS JUST ANOTHER FORM OF FLATTERY

    USUALLY BY THOSE WHO KNOW NO BETTER THEMSELVES
    wow mason, that sure is an invite to 'do-drop-in' fer a look type of post,
    can you heal the sick and raise the dead too...........
    INTERFERENCE

    This create a THIRD composite 3D solid from the common volume of two or more solids.
    hi all,
    whats the best command to use when trying to cut one object with another,
    where the point at which they join is a bit too complex to use 'slice'? I
    have had good success using 'subtract' but then one of my solids is gone.
    is there a similar command that will slice one solid where it meets a second
    solid, but leave them as seperate entities?

    Thanks,
    Shaun
     
    Mason, Jun 6, 2007
    #6
  7. Ive had a bit of a go at the various methods suggested, but the best i can
    come up with so far is still to subtract. what i do is make a copy of the
    object i will subtract, move it, say 500 away in the x plane for example,
    then subtract, then move the caopy bak in to take the place of the solid
    that was lost by subtraction. This works, but like most of my cad work, its
    not elegant in the least!

    Thanks all,
    Shaun
     
    Shaun Van Poecke, Jun 7, 2007
    #7
  8. Shaun Van Poecke

    Bill Gilliss Guest

    Eliminate a couple of steps by not moving the copy -- just subtract the
    original and the copy is right there. Here is a brief LISP I use to copy
    things in place:


    (defun c:c0 () ;copy in place -- that's C-ZERO, not C-OH
    (prompt "Select objects to copy @0,0: ")
    (command "select" pause)
    (command "copy" "p" "" "0,0" "0,0")
    )


    -Bill

    ===========
     
    Bill Gilliss, Jun 7, 2007
    #8
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.