Jump to content

Search the Community

Showing results for tags 'efficient'.

  • 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. Is there a more efficient way to write the following code? Thanks in advance for any suggestions. (mapcar (function (lambda (l) (vl-catch-all-apply 'vla-addline l)) ) (list (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(0.5 1.0 0.0)) (vlax-3d-point '(8.0 1.0 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(0.0 0.0 0.0)) (vlax-3d-point '(8.5 0.0 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(0.0 11.0 0.0)) (vlax-3d-point '(0.0 0.0 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(0.5 10.5 0.0)) (vlax-3d-point '(0.5 1.0 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(8.0 1.0 0.0)) (vlax-3d-point '(8.0 10.5 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(8.5 0.0 0.0)) (vlax-3d-point '(8.5 11.0 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(0.5 10.5 0.0)) (vlax-3d-point '(8.0 10.5 0.0)) ) (list (vla-get-paperspace (acdoc)) (vlax-3d-point '(0.0 11.0 0.0)) (vlax-3d-point '(8.5 11.0 0.0)) ) ) )
×
×
  • Create New...