Welcome![Sign In][Sign Up]
Location:
Downloads SourceCode Graph program Graph Drawing
Title: gpath Download
  • Category:
  • Graph Drawing
  • Tags:
  • File Size:
  • 1kb
  • Update:
  • 2013-05-16
  • Downloads:
  • 0 Times
  • Uploaded by:
  • DWPL
 Description: Function C:GPath is the main program function and defines the AutoCAD GPATH command. (defun C:GPath () Ask the user for input: first for path location and direction, then for path parameters. Continue only if you have valid input. (if (gp:getPointInput) (if (gp:getDialogInput) (progn At this point, you have valid input from the user. Draw the outline, storing the resulting polyline "pointer" in the variable called PolylineName. (setq PolylineName (gp:drawOutline)) (princ "\nThe gp:drawOutline function returned <") (princ PolylineName) (princ ">") (Alert "Congratulations- your program is complete!") ) (princ "\nFunction cancelled.") ) (princ "\nIncomplete information to draw a boundary.") ) (princ) exit quietly ) Display a message to let the user know the command name. (princ "\nType gpath to draw a garden path.") (princ)
 Downloaders recently: [More information of uploader DWPL]
 To Search:
File list (Check if you may need any files):
 

gpath.LSP
    

CodeBus www.codebus.net