Выполняю разные работы в этих системах и помогаю их освоить:

Обучаю черчению в системе AutoCAD.

RomaNets AutoCAD Surface Tutorial 

Двухмерное и трехмерное моделирование. Visual LISP for AutoCAD, Visual Basic in AutoCAD

(defun gp:getPointInput (/ StartPt EndPt HalfWidth)
  (if (setq StartPt (getpoint "\nStart point of path: "))
    (if	(setq EndPt (getpoint StartPt "\nEndpoint of path: "))
      (if (setq HalfWidth (getdist EndPt "\nHalf width of path: "))
	;; Build the association list.
	;; This will be the return value
	;; from the function.
	(list
	  (cons 10 StartPt)
	  (cons 11 EndPt)
	  (cons 40 (* HalfWidth 2.0))
	  (cons 50 (angle StartPt EndPt))
	  (cons 41 (distance StartPt EndPt))
	)
      )
    )
  )
)

3D Studio MAX