Author Topic: [XDrX-PlugIn(90)] Curve making WIPEOUT  (Read 859 times)

0 Members and 1 Guest are viewing this topic.

xdcad

  • Swamp Rat
  • Posts: 527
[XDrX-PlugIn(90)] Curve making WIPEOUT
« on: January 10, 2024, 01:08:31 PM »
Code: [Select]
(defun c:XDTB_Crv2Wipout (/ dist tmd e box wipeout)
  (xdrx-begin)
  (if (and (setq dist (getreal (xdrx-string-multilanguage
"\n偏移距离<退出>:"
"\nOffset Dist<Exit>:"
       )
      )
   )
   (setq tmd (getint (xdrx-string-multilanguage
       "\n输入WipeOut透明度<退出>:"
       "\nEnter WipeOut transparency <exit>:"
     )
     )
   )
   (setq e (car (xdrx-entsel
  (xdrx-string-multilanguage
    "\n拾取未封闭的多段线<退出>:"
    "\nPick unclosed polyline<Exit>:"
  )
  '((0 . "*POLYLINE") (-4 . "&=") (70 . 0))
)
   )
   )
      )
    (progn
      (xdrx-setvar "boxclosed" 1)
      (if
(and (setq box (xdrx-getpropertyvalue e "tobox" dist dist 0.0 0.0))
     (setq wipeout (xdrx-wipeout-make
     (xdrx-curve-getsamplepoints box 0.1)
   )
     )
)
(progn
   (xdrx-setpropertyvalue
     wipeout "color" 253 "Transparency" tmd)
   (xdrx-draworder->top wipeout)
   (xdrx-draworder->top e)
   (setq grpna (xdrx_group_make "*" e wipeout))
   (xdrx-prompt
     (xdrx-string-multilanguage
       "\n成功制作WIPEOUT,已建组."
       "\nWIPEOUT was successfully created and the group has been established."
     )
   )
)
      )
    )
  )
  (xdrx-end)
  (princ)
)
The code I wrote uses XDRX-API,which can be downloaded from github.com and is updated at any time.
===================================
https://github.com/xdcad
https://sourceforge.net/projects/xdrx-api-zip/
http://bbs.xdcad.net

57gmc

  • Bull Frog
  • Posts: 373
Re: [XDrX-PlugIn(90)] Curve making WIPEOUT
« Reply #1 on: January 10, 2024, 05:06:27 PM »
I'm curious what app you're using to create your gif's. Since Autodesk discontinued their app, we've been looking for a good replacement. So far, the one's I've seen don't have the features you're using that highlight cursor movement and clicks.

xdcad

  • Swamp Rat
  • Posts: 527
Re: [XDrX-PlugIn(90)] Curve making WIPEOUT
« Reply #2 on: January 10, 2024, 05:24:10 PM »
I'm curious what app you're using to create your gif's. Since Autodesk discontinued their app, we've been looking for a good replacement. So far, the one's I've seen don't have the features you're using that highlight cursor movement and clicks.

https://www.xunjieshipin.com/luping
The code I wrote uses XDRX-API,which can be downloaded from github.com and is updated at any time.
===================================
https://github.com/xdcad
https://sourceforge.net/projects/xdrx-api-zip/
http://bbs.xdcad.net

57gmc

  • Bull Frog
  • Posts: 373
Re: [XDrX-PlugIn(90)] Curve making WIPEOUT
« Reply #3 on: January 10, 2024, 05:37:03 PM »
Unfortunately, my company blocks that website.

dieptp

  • Mosquito
  • Posts: 6
Re: [XDrX-PlugIn(90)] Curve making WIPEOUT
« Reply #4 on: January 22, 2024, 03:33:21 AM »
I'm curious what app you're using to create your gif's. Since Autodesk discontinued their app, we've been looking for a good replacement. So far, the one's I've seen don't have the features you're using that highlight cursor movement and clicks.
Faststone capture quite good tho!

xdcad

  • Swamp Rat
  • Posts: 527
Re: [XDrX-PlugIn(90)] Curve making WIPEOUT
« Reply #5 on: January 22, 2024, 03:56:45 AM »
I'm curious what app you're using to create your gif's. Since Autodesk discontinued their app, we've been looking for a good replacement. So far, the one's I've seen don't have the features you're using that highlight cursor movement and clicks.
Faststone capture quite good tho!

Thank you, I know faststone can take screenshots,
Now I know it can also record videos
The code I wrote uses XDRX-API,which can be downloaded from github.com and is updated at any time.
===================================
https://github.com/xdcad
https://sourceforge.net/projects/xdrx-api-zip/
http://bbs.xdcad.net