Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SstennizZ

    Import layout with content

    I want to import a layout with a content already in it. The content has to be a 3d object, scaled and orbited to be viewed from the right angle in the viewport. I have some standard "details" as we call them. The proces now is that the detail is copied into the model space of the project and...
  2. SstennizZ

    SolidEdit in Lisp

    Thanx CarlAK, but that way it still doesn't continue the lisp once the user has coloured the faces. As soon as you select the color, the faces are coloured and you get the solidedit dropdownbox. If you exit that one, it exits the lisp too.. What I the user to be able to rotate the object...
  3. SstennizZ

    SolidEdit in Lisp

    I have tried to implement solidedit in a lisp. I want the user to color faces. The problem is that everytime I select te color and aply it, the dropdown box of solidedit apears and kicks me out of the lisp. I want the lisp to continue after the faces have been selected and the color has been...
  4. SstennizZ

    Extrude polyline

    I have managed to get the following lisp working (Like a charm I might add.. ;)) (defun c:3dg ( / a) (setq clay (getvar "clayer")) ;THE LOOP MUST START HERE (command "layer" "set" "Hulplijnen" nil) (command "_.PLINE") (while (= (getvar "CMDNAMES") "PLINE") (command...
  5. SstennizZ

    Extrude polyline

    #EDIT# - User selects 2d polyline - Lisp sets Z to 0 - Lisp requests extrude height - Lisp request user to select next 2d polyl and next height or exit
  6. SstennizZ

    Extrude polyline

    Does anybody know a lisp that does the following: - User selects 2d polyline - Lisp requests extrude height - Lisp request user to select next 2d polyl and next height or exit Found one lisp on google, but that asks for way more input than I need..
  7. SstennizZ

    Create hatch- Specific scale (need help!)

    For my company I have created a lisp that makes the placement of a custom hatch easy. In it, the user gets to choose the hatch scale and angle by inserting the specific angle or real. This works perfect, but I wanted to change the scale part. I want the user to choose between three different...

Part and Inventory Search

Back
Top