Difference between revisions of "IC Python API:3D Look At"

From Reallusion Wiki!
Jump to: navigation, search
m (Look At Math)
m (Preparing the Scene)
Line 52: Line 52:
 
# Perform '''Create > Camera'''
 
# Perform '''Create > Camera'''
  
For the items to be useful, we'll need to reference the scene objects and their transform data:
+
For the items to be useful in code, we'll need to reference them and their transform data:
  
 
<syntaxhighlight lang="Python">
 
<syntaxhighlight lang="Python">
Line 60: Line 60:
 
camera_wt = camera.WorldTransform()
 
camera_wt = camera.WorldTransform()
 
box_wt = box.WorldTransform()
 
box_wt = box.WorldTransform()
 +
</syntaxhighlight>
 +
 +
== Pointing the Camera ==
 +
 +
Now that all the elements are in place, we'll need to call the '''look_at_right_handed''' function to point the camera towards the box.
 +
 +
<syntaxhighlight lang="Python">
 +
# Up-vector for camera is (0,0,1)
 +
m3_orientation = look_at_right_handed(
 +
    camera_wt.T(), box_wt.T(), RLPy.RVector3.UNIT_Z)
 +
 +
# Convert rotational 3x3 matrix to Eular angles
 +
x = y = z = 0
 +
e_rotation = m3_orientation.ToEulerAngle(RLPy.EEulerOrder_XYZ, x, y, z)
 +
 +
# Rotational values need to be qualified with RLPy.RVariant()
 +
data_block = camera.GetControl("Transform").GetDataBlock()
 +
data_block.SetData("Rotation/RotationX", RLPy.RTime(0),
 +
                  RLPy.RVariant(e_rotation[0]))
 +
data_block.SetData("Rotation/RotationY", RLPy.RTime(0),
 +
                  RLPy.RVariant(e_rotation[1]))
 +
data_block.SetData("Rotation/RotationZ", RLPy.RTime(0),
 +
                  RLPy.RVariant(e_rotation[2]))
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 02:53, 23 April 2019

Main article: RL Python Samples.

This article will discuss one of the pillars of 3D mathematics for solving a very common problem. Specifically, how to face one item in the scene towards another similar to how Look at (O) is implemented for cameras in iClone. Keep in mind that the position of an item is set by its pivot point and will need to be adjusted if it is not in the desired location.

Necessary Modules

The only required module for this code is:

import RLPy

Look At Math

It is a good idea to tuck away complex math algorithms in easy to understand, reusable functions. Better still is to tuck all complex math functions under a unified class like Math3D for example. 3D math is not an easy subject matter but it's not a field you'll need to master in entirety. In fact, many resources exist online which just need some diligence and patience to uncover such as this one: http://www.technologicalutopia.com/sourcecode/xnageometry/matrix.cs.htm

So let's dive into the mathematical function we'll need to pull of a right-handed look at that is compatible with iClone's coordinate system:

def look_at_right_handed(view_position, view_target, view_up_vector):
    # Look at takes two positional vectors and calculates the facing direction
    forward = view_position - view_target
    forward.Normalize()
    right = view_up_vector.Cross(forward)
    right.Normalize()
    up = forward.Cross(right)

    # Retun a right-handed look-at rotational matrix
    return RLPy.RMatrix3(right.x, right.y, right.z,         # X vector
                         up.x, up.y, up.z,                  # Y vector
                         forward.x, forward.y, forward.z)   # Z vector

The result of this formula is a rotational 3x3 matrix with the right, up, and forward vectors combined.

Important Takeaways

  • The forward vector is the view position minus the target position normalized.
  • Right vector is the cross product of the up vector and the forward vector normalized.
  • Up vector is the cross product of the forward vector and the right vector.
  • "Normalized" simply means that the magnitude of the vector will always equal to 1 unless it is too small, then a zero vector will be returned.

Preparing the Scene

In order to run this sample code you'll need to prepare a test scene:

  1. Create a new iClone project.
  2. Perform Create > Primitive Shape > Box.
  3. Move the box by -200 in the X-axis.
  4. Change the pivot of the box to the center under Modify > Pivot section.
  5. Perform Create > Camera

For the items to be useful in code, we'll need to reference them and their transform data:

# Grab the elements in the scene and their world transforms
camera = RLPy.RScene.FindObject(RLPy.EObjectType_Camera, "Camera")
box = RLPy.RScene.FindObject(RLPy.EObjectType_Prop, "Box")
camera_wt = camera.WorldTransform()
box_wt = box.WorldTransform()

Pointing the Camera

Now that all the elements are in place, we'll need to call the look_at_right_handed function to point the camera towards the box.

# Up-vector for camera is (0,0,1)
m3_orientation = look_at_right_handed(
    camera_wt.T(), box_wt.T(), RLPy.RVector3.UNIT_Z)

# Convert rotational 3x3 matrix to Eular angles
x = y = z = 0
e_rotation = m3_orientation.ToEulerAngle(RLPy.EEulerOrder_XYZ, x, y, z)

# Rotational values need to be qualified with RLPy.RVariant()
data_block = camera.GetControl("Transform").GetDataBlock()
data_block.SetData("Rotation/RotationX", RLPy.RTime(0),
                   RLPy.RVariant(e_rotation[0]))
data_block.SetData("Rotation/RotationY", RLPy.RTime(0),
                   RLPy.RVariant(e_rotation[1]))
data_block.SetData("Rotation/RotationZ", RLPy.RTime(0),
                   RLPy.RVariant(e_rotation[2]))