Author Topic: rectang angle..  (Read 4965 times)

0 Members and 1 Guest are viewing this topic.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
rectang angle..
« Reply #15 on: July 28, 2005, 02:06:33 PM »
I think you want "Images" not Lilly Pond.
Lilly Pond is for storage requiring a password. The Image storage is for screen links & such.
So use the "Swamp links: pull down to get to Images. Create a new folder using your name.
Upload an image file, preferable a png or the smallest format you can.  When uploaded,
right click on the new file and 'Copy Link'. Then create your message and paste the link
between [img ] and [/img ].
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

daron

  • Guest
rectang angle..
« Reply #16 on: July 28, 2005, 02:10:05 PM »
Oops. Silly me. Thanks CAB.

Andrea

  • Water Moccasin
  • Posts: 2372
rectang angle..
« Reply #17 on: August 02, 2005, 07:29:28 AM »
just for testing...




heun !?   what i'm doing wrong ?

EDIT by MST
converted .bmp to .png and reinserted image
Keep smile...

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
rectang angle..
« Reply #18 on: August 02, 2005, 08:33:15 AM »
Looks like it should work.
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

Andrea

  • Water Moccasin
  • Posts: 2372
rectang angle..
« Reply #19 on: August 02, 2005, 12:32:04 PM »
oh..i see..

thank you very much !
now i can explain better with image..

 8)
Keep smile...

Andrea

  • Water Moccasin
  • Posts: 2372
rectang angle..
« Reply #20 on: August 03, 2005, 09:48:20 AM »
Quote from: CAB
Extending an example given by Jeff M. to get this.
Code: [Select]
 (setq pline (entsel))
  (setq pick (cadr pline))
  (setq plObj (vlax-ename->vla-object (car pline)))
  (setq pick2 (vlax-curve-getclosestpointto plobj pick))
  (setq param (vlax-curve-getparamatpoint plObj pick2))
  (setq p1 (vlax-curve-getpointatparam plObj (fix param)))
  (setq p2 (vlax-curve-getpointatparam plObj (fix (1+ param))))
  (princ (angle p1 p2))


CAB...your code working well...since re-installing AutoCAD 2005..

now, when using this..
(setq plObj (vlax-ename->vla-object (car pline)))

the conversion do not seem to work anymore..i got this error message.

Select object to offset: ; erreur: Le serveur ActiveX a renvoyé une erreur:
Erreur lors du chargement de la bibliothèque/DLL du type

(sorry cause we have all AutoCAD french here so i don'T know what is exactly the message in english)

do i need to load something before ? DLL ?
Keep smile...

Jeff_M

  • King Gator
  • Posts: 4096
  • C3D user & customizer
rectang angle..
« Reply #21 on: August 03, 2005, 11:11:59 AM »
Try issuing (vl-load-com)
If that works, add it to your acaddoc.lsp to ensure that it is always loaded.