Jump to content

Search the Community

Showing results for tags 'snap ssget'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CADTutor
    • News, Announcements & FAQ
    • Feedback
  • AutoCAD
    • AutoCAD Beginners' Area
    • AutoCAD 2D Drafting, Object Properties & Interface
    • AutoCAD Drawing Management & Output
    • AutoCAD 3D Modelling & Rendering
    • AutoCAD Vertical Products
    • AutoCAD LT
    • CAD Management
    • AutoCAD Bugs, Error Messages & Quirks
    • AutoCAD General
    • AutoCAD Blogs
  • AutoCAD Customization
    • The CUI, Hatches, Linetypes, Scripts & Macros
    • AutoLISP, Visual LISP & DCL
    • .NET, ObjectARX & VBA
    • Application Beta Testing
    • Application Archive
  • Other Autodesk Products
    • Autodesk 3ds Max
    • Autodesk Revit
    • Autodesk Inventor
    • Autodesk Software General
  • Other CAD Products
    • BricsCAD
    • SketchUp
    • Rhino
    • SolidWorks
    • MicroStation
    • Design Software
    • Catch All
  • Resources
    • Tutorials & Tips'n'Tricks
    • AutoCAD Museum
    • Blocks, Images, Models & Materials
    • Useful Links
  • Community
    • Introduce Yourself
    • Showcase
    • Work In Progress
    • Jobs & Training
    • Chat
    • Competitions

Categories

  • Programs and Scripts
  • 2D AutoCAD Blocks
  • 3D AutoCAD Blocks
  • Images
    • Backgrounds

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 1 result

  1. Rounding of 4 polylines according to the criteria: - radii from inside 420 , 560, 588 , 728 - if the outer polyline becomes the inner then round 728,588 ,560, 420 The point is to detect with 4 polylines are next to each other, determine which is internal and which is external. Then for each polyline round the hatches alternately according to the above criteria. Also i am looking for a way to sort polylines according to selection cords. Right now if i select every polylines clicking one by one its fillet according to selection but if i try to snap selection then its all messed up its going like 1-1 , 2-3 ,3 -4 , 4-2 (defun c:changefillet () (setq ss (ssget '((0 . "LWPOLYLINE")))) (setq num (sslength ss)) (if (= num 4) (progn (setq pl1 (ssname ss 0)) (setq pl2 (ssname ss 1)) (setq pl3 (ssname ss 2)) (setq pl4 (ssname ss 3)) (progn ;lewo (setvar "FILLETRAD" 420) (command "_.fillet" "_polyline" pl1) (setvar "FILLETRAD" 560) (command "_.fillet" "_polyline" pl2) (setvar "FILLETRAD" 588) (command "_.fillet" "_polyline" pl3) (setvar "FILLETRAD" 728) (command "_.fillet" "_polyline" pl4) ) ) ) (princ) ) Rn its look like that: And i want to acheve this:
×
×
  • Create New...