Sunday, December 1, 2013

Welcome to NanoCAD Lisp Blog

by Prayooth Bhundularp

NanoCAD 5.0 Release

I have download NanoCAD 5.0 and test lisp for land subdivision export line coordinate and then use Sketchup's ruby import and create face. Bingo it's work!
I'm looking for a free CAD that can easily develop some application for daily work and NanoCAD is that one.
I will show you how to develop lisp command to make your work quicker.

Sofware:

  1. NanoCAD it will ask your name and email address to send you a link to download by your email Link to download
  2. Notepad++ Link to download

Let's Begin

Install both softwares you have downloaded.
Run NanoCAD and Notepad++
With NanoCAD you start new document and also Notepad++.

Notepad++


;;; comment start with ;
;;;  begin of code
(defun C:test()
  (alert "Hello World.")
);defun

(C:test)
;;; end of code

save to file test.lsp or you can dowload it here.

NanoCAD

menu > Tools > Application > Load Application
  • select file test.lsp
  • Click Load Button
  • Click Close Button
You will see window popup below