Selected Courses on Digital Art-UOWM

5 Νοεμβρίου 2016

Match moving

[youtube https://www.youtube.com/watch?v=vixm6zGzmRM&w=560&h=315]

[youtube https://www.youtube.com/watch?v=oEZ-WxpBnqE&w=560&h=315]

16 Μαρτίου 2015

Maya tutorial for beginners 2015

Filed under: MAYA — admin @ 10:41
[youtube https://www.youtube.com/watch?v=V7p1XROYzY8]

10 Μαρτίου 2015

maya tutorial-making a shark

Filed under: MAYA — admin @ 09:18

[youtube https://www.youtube.com/watch?v=8HMLOUofD5A]

10 Δεκεμβρίου 2014

Character Modeling Tutorial – Maya

Filed under: MAYA — admin @ 19:39

[youtube https://www.youtube.com/watch?v=2R8Hh954ecs]

[youtube https://www.youtube.com/watch?v=yZDRc023XAE]

[youtube https://www.youtube.com/watch?v=HbeI3hkYzIY]

15 Νοεμβρίου 2014

learning maya

Filed under: MAYA — admin @ 11:58

[youtube https://www.youtube.com/watch?v=YZ_deuTJ-xc?list=PLD8E5717592CF5C26]

……..2/6….3/6….4/6……..

[youtube https://www.youtube.com/watch?v=TFkUclwFjDg?list=PLD8E5717592CF5C26]-

—- [youtube https://www.youtube.com/watch?v=C69sQ9sLOvY]

14 Οκτωβρίου 2014

https://www.youtube.com/user/MayaHowTos

Filed under: MAYA,ΑΝΑΚΟΙΝΩΣΕΙΣ — admin @ 14:12
https://www.youtube.com/user/MayaHowTos

30 Απριλίου 2013

da-maya-mel

Filed under: MAYA — admin @ 10:13
maya software (g.   ?)

open maya- open maya window- primitives-code
(mention vrml)

*from wiki which is a great open source library …unfrtntly maya isnt

mel

The Maya Embedded Language (MEL) is a scripting language used to simplify tasks in Autodesk’s 3D Graphics Software Maya
Most tasks that can be achieved through Maya’s GUI can be achieved with MEL, as well as certain tasks that are not available from the GUI. MEL offers a method of speeding up complicated or repetitive tasks, as well as allowing users to redistribute a specific set of commands to others that may find it useful.
MEL is syntactically similar to Perl and Tcl. 
It provides some memory management and dynamic array-allocation, and offers direct access to functions specific to Maya. The majority of standard Maya commands are default MEL scripts, saved in the Maya Program Files directory.
MEL is fairly limited compared to mainstream scripting languages. Mel is primarily a language meant to journal the Maya session, thus lacks many advanced features such as associative arrays. Python was added to Maya as an alternative to MEL in Maya 8.5. Still MEL offers some advantages to Python:
  • Discoverability of MEL is better since the built-in command echo server was created with MEL in mind.
  • A lot of legacy code and inner working of Maya is in MEL form. This provides many insights into undocumented inner workings of Maya.
MEL is often criticized for its lack of programming features, and object orientation. In practice however MEL is used as a metaprogramming language where MEL just instructs Mayas node architecture to solve the problem. 
Since nodes form the actual computational core of Maya using a more robust readily apparent programming method would be many times the wrong approach. In many ways MEL complements the Maya API, with somewhat clear boundaries between allocated tasks. This makes MEL harder to learn and fully understand.

Applications of MEL

The tools designed using MEL Scripts generally come under the following categories.
  • Data I/O
  • Motion capture data import
  • Proprietary game data export
  • Scene meta-data for production tracking
  • Geometry creation/modification
  • Custom primitives
  • Third-party renderer specific data type (e.g., RenderMan sub-divisional surfaces)
  • Modeling tools not offered in the base package
  • Animation tools
  • Muscle simulators
  • Rigging/setup controls
  • Crowd AI behavior
  • Lighting /rendering tools
  • Automatic creation of common complex shader setups
  • Pre- and post-render effects
  • Making calls to third-party renderers
  • Dynamics
  • Custom particle behavior
  • Simulated object emergent flocking and swarming
  • Genetic algorithms
  • Cloth simulation
  • File and folder scene setup and maintenance
  • User interface customization
  • Custom character controls
  • Removal of invalid Maya commands
  • Custom UIs

[edit]Example

This is an example of a script which copies a selected object through its path:
// animated duplicates/instances script
proc animatedDuplication (int $rangeStart, int $rangeEnd, int $numOfDuplicates, int $duplicateOrInstance)
{
int $range_start = $rangeStart;
int $range_end = $rangeEnd;
int $num_of_duplicates = $numOfDuplicates;
int $step_size = ($range_end - $range_start) / $num_of_duplicates;
int $i = 0;
int $temp;

currentTime $range_start; // set to range start

string $selectedObjects[]; // to store selected objects
$selectedObjects = `ls -sl`; // store selected objects
select $selectedObjects;

while ($i <= $num_of_duplicates)
{
$temp = $range_start + ($step_size * $i);
currentTime ($temp);
// seleced the objects to duplicate or instance
select $selectedObjects;
if($duplicateOrInstance == 0)
{
duplicate;
}
else
{
instance;
}
$i++;
}
}
 // Usage example:
// duplicate the current selection 5 times --
// evenly distributed between frame 1 and 240
animatedDuplication(1, 240, 5, 0);

Maya Links
WarpCat26 July 2012 (created 1 July 2007)
Quality links you should know about, having to do with Maya, and mel:

‘Official’:

These sites appear to be down, or lost to the Autodesk takeover.


‘Unofficial’:

‘Books’
http://artixel.wordpress.com/category/mel/

Powered by WordPress

error: Content is protected !!