Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
291 views

How to compile for older 3dsmax versions with 2010 \ 2011 sdk?

I'm working on a plugin, and previously I saw that I could compile for several older versions of 3dsmax with just 2010 sdk installed. The new project I've got works now with 32\64 max 2011 and 2010 ...
2
votes
1answer
422 views

Recalculate normal on editable poly object

I'm working on a exporter, but the problem I'm stuck at is the normal calculation. I've been reading many posts about this, and it seems like the "getnormal" function does not work like intended. ...
2
votes
3answers
888 views

Converting a CAD file to a shape file

Hey folks: Thanks for the assist on my previous question.... I was able to complete my project This time I have a CAD file created with Autodesk that I need to convert to a shape file. Couple of ...
1
vote
0answers
34 views

Python Dictionary Method Calls win32com

I have run makepy on Autodesk Inventor to be able to script certain tasks. I am having trouble understanding the appropriate protocol for using properties/methods stored in class dictionaries. I ...
1
vote
1answer
158 views

How to get label name in Autocad file using C#

I think it is simple to do this but i dont know how to start? I want to get layer name or label name in the autocad file using c#. I search the forums but i really find anything valuable. I found the ...
1
vote
1answer
264 views

AUTOCAD WS API? [closed]

Hi all I've been very impressed by https://www.autocadws.com/ the new service by autodesk. It would be wondderful to have some API to integrate some functions in a web application (something like ...
1
vote
2answers
571 views

Creating a simple hierarchy structure in Maya using mel/python

So I want to create a very simple structure out of group and locator nodes in Maya which will then be exported for use in my game level. e.g. Group_Root group_parent - group1 - locator1 ...
1
vote
2answers
470 views

Does Maya Mel have a good API to a IDE?

I'm developing in MAYA and looking for a good API to connect my models and to be able to control them programatically. thanks.
1
vote
1answer
844 views

Printing a dwf/dwfx file from WPF

I'm currently attempting to print a document from WPF. I'm using the web browser because it contains an active x control which has the autodesk plugin which I need to view the document. I'm aware ...
0
votes
0answers
9 views

Programmatically download Autodesk Buzzsaw Site Activity Log

I would like to programmatically download the Activity Log from an Autodesk Buzzsaw Site. There are 2 Buzzsaw API's that I know of, the projectpoint api and the member management API, however, I dont ...
0
votes
0answers
32 views

Beginning Programmer advice needed? [closed]

I work for an Autodesk reseller in Long Island NY, and I want to learn to program in order to grow my skill sets. I want to be able to write macros and add-ons for Autodesk Inventor and possibly ...
0
votes
1answer
96 views

XNA and FBX Coloring Problem

My problem is that, if I use BasicEffect (and setup VertexColorEnabled = true) or my own shader, and use only colored (not textured!) models, it gives the error that Color0 is missing...Isn't it weird ...
0
votes
1answer
103 views

How do I convert this program to work on a 64 bit machine for VB 6.3?

I have some VB 6.3 code that's normaly used on a 32 bit machine. But I am now trying to run it on a 64bit machine and the code doesn't work. It was programmed in VBA (autodesk) Can someone help me ...
0
votes
1answer
80 views

How to import a point file in autodesk 3d max?

I have a text (.txt) file which contains 3d points in line delimited format like this: 0,0,0 1,0,0 3,2,5 I want to import these points in AutoDesk 3d max. These points doesn't form any shape i.e. they ...
0
votes
0answers
70 views

Computer Animation Programming Jobs [closed]

I am computer science student, I have been using Autodesk Maya since 2005. I would love to work one day in Autodesk as software engineer. Can you give me any general or specific recommendations? My ...
0
votes
0answers
31 views

Website CAD-type Plugin options

I would like to automate the entry of parameters into an AutoDesk Inventor model through a web interface. Essentially, a user will enter parameter values that will affect the final outcome of the ...
0
votes
1answer
96 views

Rendering Revit files to a graphics surface in a Windows Forms/WPF app

I noted on AutoDesk forum post that there are commercial SDKs that allow you do read/write/render DWG files within your Windows Forms application. http://www.woutware.com/cadlib/4.0/pricing.html is ...
0
votes
0answers
159 views

Problem starting external .exe from an Autodesk Inventor AddIn written in C#

I am having some problems relating to the exeution of an external .exe from an inventor API i have created in Visual C#. To start the process i am using the following piece of code: using ...
0
votes
0answers
40 views

Autodesk Ravit API : Want to create a Extrusion Family Programaticallly in c#?

I need urgent help. I want to create extrusion family using Ravit API. I am using this code. Extrusion rect = familyDocument.CreateFamily.NewExtrusion(true, curveArrArray, 10); But it is giving me ...
0
votes
1answer
119 views

Linking a Maya client library to libOpenMayalib.a fails, MLibrary::initialize can't be found (even though nm shows libOpenMayalib.a contains it)

I'm trying to link my app with the Maya C++ API, but i get: Debug/../src/main.cpp:80: undefined reference to `MLibrary::initialize(bool, char*, bool)' but, nm shows: nm libOpenMayalib.a | grep ...
0
votes
2answers
621 views

how (in maya) can i get the 3D position of the mouse?

i have created a dragger context in maya using the following code, pos holds my 2D coordinates of mouse cursor, i want to convert it into 3D coordinate to be the source of the ray i want to launch,, i ...
0
votes
1answer
547 views

Autodesk Revit MEP 2010 .NET API C# room to door relation

working with VS 2008 and Autodesk Revit MEP 2010 in C# i am trying to find out if a door is connecting to rooms: ElementSetIterator elementsetiteratorBIMDoors = ...
0
votes
1answer
466 views

How to set the value of a shared parameter with type binding in Autodesk Revit Architecture 2010?

I have a shared parameter UValue bound to the Wall type with TypeBinding in Autodesk Revit Architecture 2010. I can easily access the parameter with: Definition d = ...
0
votes
1answer
113 views

How can I access the overridden properties of a .NET API object in IronPython?

I am using IronPython to create a shell for a plugin API to Autodesk Revit Architecture 2010 to speed up learning their API. One of the classes the API provides is Autodesk.Revit.Elements.Room, ...