Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/05/2020 in all areas

  1. There is no need to convert the entity to vla-object to retrieve data in this case at all and as you already did in the first post but you did not assign the start & end coordinates to variables as in the last reply you posted. The following is enough. (setq lix (entget (ssname ss (setq i (1- i))))) (setq start (cdr (assoc 10 lix))) (setq end (cdr (assoc 11 lix)))
    1 point
  2. Nice, I always do the lambda divide pts / 2 as 2 steps so thanks now 1 line. I Work in metric rtos 2 4 that is to 1/10 of a mm 2 3 is the norm for a dwg in metres. The next step would be to use Aeccoreconsole to process 500 dwg's I would have used VL just a personal preference (setq lix (vlax-ename->vla-object (ssname ss (setq i (1- i))))) (setq start (vlax-get lix 'StartPoint)) (setq end (vlax-get lix 'EndPoint)) (setq mid (mapcar (function (lambda (a b) (/ (+ a b) 2.0))) start end)) Just a comment here in AUS E,N,Z depends where you are in the world.
    1 point
  3. @alanjt You're posting again Alan! Nice to see you around
    1 point
  4. Generate Boundary is also in the right click contextual menu.
    1 point
  5. AutoCAD 2014 was pre Windows 10 and not supported. AutoCAD 2016 was the first supported in Windows 10, with an update IIRC. A different Graphics card and/or driver my resolve this problem, but hard to say, but problems with the Ribbon and Quick Access and other similar things seem to be par for the course. You could always just stay on Windows 7 or upgrade AutoCAD. Longbow claims to have a fix as well.
    1 point
  6. Sorry Butch, I don't know what to tell you. I run Autocad 2016 on Windows 10, and it works OK, displays properly with Quick Access Toolbar. Try checking in your OPTIONS, on the PROFILE tab, and make sure that the Profile you favor is in use?
    1 point
×
×
  • Create New...