Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/02/2021 in all areas

  1. Just use the MPEDIT (Express Tool) Join option with a Fuzz distance of 0.0001mm. They must be at the same elevation and coordinate system though. I'd probably use the FILLET (Command) if there's not to many of them.
    1 point
  2. if you look through it, question 1 is answered in the comments. Use the getpoint command instead of coordinates, google is your friend here. You could change the line to (setq pt (getpoint "Insertion Point"))
    1 point
  3. In AutoCAD, the origin is the WCS. It never changes and is baked into every DWG file. In Revit, you tell the project file where you want the origin, but you can choose the Shared Coordinate system (which is visible via the Survey Point), or use the Internal Coordinate System (which is invisible but can be read through spot elevations). Where things can go haywire is when you start moving the Survey Point unpinned and pinned, which can alter the Internal Coordinate System. My suggestion is just to use the Shared Coordinate System and manually set it to where you want it to be, but it's best to choose something easy like grid line A,1 at 100ft for Level 1.
    1 point
  4. This sets the default option. (initget "All Select") (setq select (cond ((getkword "\nSelect text to change [All/Select] <Select> : ")) ("Select") ) ) (cond ((= select "Select") (setq SS (ssget "_:L" '((0 . "MTEXT"))))) ; Prob should limit the selection to mtext. don't know if the entmod would error if other things where picked. ((= select "All") (setq SS (ssget "_X" '((0 . "MTEXT"))))) )
    1 point
  5. In my drawing, using Autocad Map 3d 2021, I cannot rename Object Data Field Name. In "Define Object Data" I normally select my Table, then click "Modify", then I select Object data field in which I wish to rename its Field name. But when I change Field Name, button "Update" is inactive...it's colour remains gray and cannot click on it. It is possible to rename Description but not Field Name! Why? Is it possible at all?
    1 point
×
×
  • Create New...