Questions tagged [maya-api]

This tag deals with [tag:maya] API questions, as opposed to Maya scripting interfaces.

is a subtag for Maya that deals with the API questions. C++ Application Programmer Interface provides better performance than MEL or Python. You can add new objects to Maya using the API, and code executes approximately ten times faster than when you perform the same task using MEL. Also, you are able to execute MEL commands from the API.

169 questions
-2
votes
4 answers

set render images path in maya by python

I want to render images in specific location in Maya 2015. for that i want to set the image output path by python (pymel or cmds). import maya.cmds as cmds import pymel.core as pm path = r"D:\my_renderpath" pm.mel.eval(r' setProject…
Rajiv Sharma
  • 6,746
  • 1
  • 52
  • 54
-2
votes
1 answer

What's the right way to integrate the Maya C# api with existing scripts?

I have a set of libraries in Python (Maya Python API), that I would like to have some wrappers over in C#. Currently have an ability to invoke the python code by constructing strings and sending them over to the python engine, but would prefer to…
Joe
  • 631
  • 2
  • 7
  • 18
-3
votes
1 answer

I have a text file of a grid that has x y z coordinates and varying lengths of the sides of the cells(sx, sy and sz)

I have a text file of a grid that has x y z coordinates (of cell centers and are in UTM) and varying lengths of the sides of the cells(sx, sy and sz). The points are random points. I would like to plot this in Python. Can anyone offer any…
RB123
  • 1
  • 2
1 2 3
11
12