Author Topic: AutoCAD 15 and the API  (Read 3378 times)

0 Members and 1 Guest are viewing this topic.

Draftek

  • Guest
AutoCAD 15 and the API
« on: May 14, 2014, 12:05:03 PM »
I've been out of the programming world and AutoCAD for some time now. Anything new in 15 regarding user experience and API?

dgorsman

  • Water Moccasin
  • Posts: 2437
Re: AutoCAD 15 and the API
« Reply #1 on: May 14, 2014, 12:43:58 PM »
Constipation, due to less fibres.   :-D
If you are going to fly by the seat of your pants, expect friction burns.

try {GreatPower;}
   catch (notResponsible)
      {NextTime(PlanAhead);}
   finally
      {MasterBasics;}

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: AutoCAD 15 and the API
« Reply #2 on: May 14, 2014, 12:56:16 PM »
it's now Gluten Free!

and can cause unexplained Priapism
Be your Best


Michael Farrell
http://primeservicesglobal.com/

Draftek

  • Guest
Re: AutoCAD 15 and the API
« Reply #3 on: May 14, 2014, 01:01:42 PM »
So, they finally revamped the graphics?
That's it?


BlackBox

  • King Gator
  • Posts: 3770
"How we think determines what we do, and what we do determines what we get."

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: AutoCAD 15 and the API
« Reply #6 on: May 14, 2014, 02:14:08 PM »
Funny, they pay lip service to supporting the Dark Theme, however as I pointed out in my review of C3D 2015 the
Dark Theme is NOT fully implemented; even by Autodesk. (what a bunch of losers)
Be your Best


Michael Farrell
http://primeservicesglobal.com/

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: AutoCAD 15 and the API
« Reply #7 on: May 14, 2014, 02:19:35 PM »
AutoCAD 360 won't go away quietly so the Javascript API (1) may be worth investigation in the next 12 months.
The Document Tabs looked interesting .. just need to find a rational reason to use them ... other than Ohhh shiny !

(1) Jonesy, there's a good excuse to learn JavaScript :)
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Draftek

  • Guest
Re: AutoCAD 15 and the API
« Reply #8 on: May 14, 2014, 02:31:13 PM »
Thanks,

Some interesting features as usual but nothing earth shattering either.

I'll go back to sleep now..

Keith Brown

  • Swamp Rat
  • Posts: 601
Re: AutoCAD 15 and the API
« Reply #9 on: May 14, 2014, 05:17:29 PM »
=
The Document Tabs looked interesting .. just need to find a rational reason to use them ... other than Ohhh shiny !


I was planning to use this tab to display information about the current open drawings.  Since I use AutoCAD MEP I was going to investigate to running total of fittings, pipe, duct, etc and display as a html page.  So far its just a thought and nothing on paper yet.
« Last Edit: May 14, 2014, 05:24:11 PM by Keith Brown »
Keith Brown | AutoCAD MEP Blog | RSS Feed
AutoCAD MEP 2014 / Revit MEP 2014 / EastCoast CAD/CAM addon / Visual Studio 2013

BlackBox

  • King Gator
  • Posts: 3770
Re: AutoCAD 15 and the API
« Reply #10 on: May 14, 2014, 06:33:59 PM »
"How we think determines what we do, and what we do determines what we get."

Dent Cermak

  • Guest
Re: AutoCAD 15 and the API
« Reply #11 on: May 14, 2014, 06:53:10 PM »
it's now Gluten Free!

and can cause unexplained Priapism



not to mention anal seepage.........

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: AutoCAD 15 and the API
« Reply #12 on: May 14, 2014, 08:37:28 PM »
it's now Gluten Free!

and can cause unexplained Priapism



not to mention anal seepage.........

Sorry to hear about that one Dent.
Be your Best


Michael Farrell
http://primeservicesglobal.com/

MexicanCustard

  • Swamp Rat
  • Posts: 705
Re: AutoCAD 15 and the API
« Reply #13 on: May 15, 2014, 07:42:39 AM »
Autodesk did finally adopt .NET 4.5. So you can now use Async/Await in your plug ins.
Revit 2019, AMEP 2019 64bit Win 10

BlackBox

  • King Gator
  • Posts: 3770
Re: AutoCAD 15 and the API
« Reply #14 on: May 15, 2014, 08:44:19 AM »
Autodesk did finally adopt .NET 4.5. So you can now use Async/Await in your plug ins.

For those (ah me) who may not already be adept:

Quote from: MSDN, async (C# Reference)

async (C# Reference)

Use the async modifier to specify that a method, lambda expression, or anonymous method is asynchronous. If you use this modifier on a method or expression, it's referred to as an async method.

...

If you're new to asynchronous programming or do not understand how an async method uses the await keyword to do potentially long-running work without blocking the caller’s thread, you should read the introduction in Asynchronous Programming with Async and Await (C# and Visual Basic).

...

"How we think determines what we do, and what we do determines what we get."