Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefaultstyle
widths8%, 92%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

vector

Scroll pagebreak

Examples

Code Block
languagetext
//Read Rot Example

...


vector $rot;

...


int $fileID;

...


int $fileID = `fileOpen "C:/FileTesting.txt" "r"`;
  

...

// Read the rotation as an Euler angle

...


// The -delims flag assumes you are reading from a text file 

...


$rot = `readRot $fileID -delim ","`;
  

...


// Or, read the rotation as a quaternion

...


// The -delims flag assumes you are reading from a text file 

...


$rot = `readRot $fileID -quat -delim "\t"`;

...


fileClose $fileID;
  

...

// Display the value

...


print $rot;

Additional information

Related commands

...