Author Topic: 3D WORKSPACES in ACAD2014  (Read 1138 times)

0 Members and 1 Guest are viewing this topic.

MGF

  • Mosquito
  • Posts: 6
3D WORKSPACES in ACAD2014
« on: August 17, 2016, 12:32:59 PM »
I've been away for a while but programming is addictive.

Does anyone use the subject work spaces while programming in AutoLisp & if so, would you elaborate on same?

Thanks,

mgf

ChrisCarlson

  • Guest
Re: 3D WORKSPACES in ACAD2014
« Reply #1 on: August 17, 2016, 12:52:42 PM »
not sure what you are trying to do?

(setvar 'WSCURRENT "3D MODELING") would set the current workspace to "3D Modeling"

MGF

  • Mosquito
  • Posts: 6
Re: 3D WORKSPACES in ACAD2014
« Reply #2 on: August 17, 2016, 01:18:33 PM »
Master_Shake

Thanks for your response.

Over the years (ACAD 10 - ACAD2015) much of my AutoLISP programming had/has centered around using 3DSOLID objects. ACAD 2004, for example, didn't offer the 3D WORKSPACES available in ACAD2015. So I'm not sure what advantages, if any, exist by using these newer WorkSpaces when programming in AutoLISP.

Thanks,

mgf

ChrisCarlson

  • Guest
Re: 3D WORKSPACES in ACAD2014
« Reply #3 on: August 17, 2016, 01:30:16 PM »
Specifically related to AutoLISP I don't think there is any correlation between workspaces and AutoLISP programming ability.

A workspace is simply a tailored viewing experience. All of the core functions are available regardless of the current workspace that is visible. By using workspaces you can clean up the quantity of ribbon panels to choose from. One nice tidbit, is several of the workspace specific commands are actually macros.

For instance the following snippet performs a extrude face macro which will execute the "solidedit" command, select face and then finally select extrude.



MGF

  • Mosquito
  • Posts: 6
Re: 3D WORKSPACES in ACAD2014
« Reply #4 on: August 17, 2016, 02:03:49 PM »
Master_Shake

That helps me get stared in the right direction.

Thanks,

mgf