Class: Mittsu::Camera

Inherits:
Object3D show all
Defined in:
lib/mittsu/cameras/camera.rb

Direct Known Subclasses

OrthographicCamera, PerspectiveCamera

Constant Summary

Constants inherited from Object3D

Object3D::DefaultUp

Instance Attribute Summary collapse

Attributes inherited from Object3D

#cast_shadow, #children, #frustum_culled, #geometry, #id, #matrix, #matrix_auto_update, #matrix_world, #matrix_world_needs_update, #name, #parent, #position, #quaternion, #receive_shadow, #render_order, #rotation, #rotation_auto_update, #scale, #type, #up, #user_data, #uuid, #visible

Instance Method Summary collapse

Methods inherited from Object3D

#add, #apply_matrix, #get_object_by_id, #get_object_by_name, #get_object_by_property, #get_world_position, #get_world_quaternion, #get_world_rotation, #get_world_scale, #local_to_world, #print_tree, #raycast, #remove, #rotate_on_axis, #rotate_x, #rotate_y, #rotate_z, #set_rotation_from_axis_angle, #set_rotation_from_euler, #set_rotation_from_matrix, #set_rotation_from_quaternion, #to_json, #to_s, #translate_on_axis, #translate_x, #translate_y, #translate_z, #traverse, #traverse_ancestors, #traverse_visible, #update_matrix, #update_matrix_world, #world_to_local

Methods included from EventDispatcher

#add_event_listener, #dispatch_event, #has_event_listener, #remove_event_listener

Methods inherited from HashObject

#[], #[]=, #delete

Constructor Details

#initializeCamera

Returns a new instance of Camera.



7
8
9
10
11
12
13
# File 'lib/mittsu/cameras/camera.rb', line 7

def initialize
  super

  @type = 'Camera'
  @matrix_world_inverse = Matrix4.new
  @projection_matrix = Matrix4.new
end

Instance Attribute Details

#matrix_world_inverseObject

Returns the value of attribute matrix_world_inverse.



5
6
7
# File 'lib/mittsu/cameras/camera.rb', line 5

def matrix_world_inverse
  @matrix_world_inverse
end

#projection_matrixObject

Returns the value of attribute projection_matrix.



5
6
7
# File 'lib/mittsu/cameras/camera.rb', line 5

def projection_matrix
  @projection_matrix
end

Instance Method Details

#clone(camera = Camera.new) ⇒ Object



27
28
29
30
31
32
# File 'lib/mittsu/cameras/camera.rb', line 27

def clone(camera = Camera.new)
  super
  camera.matrix_world_inverse.copy(@matrix_world_inverse)
  camera.projection_matrix.copy(@projection_matrix)
  camera
end

#get_world_direction(target = Vector3.new) ⇒ Object



15
16
17
18
19
# File 'lib/mittsu/cameras/camera.rb', line 15

def get_world_direction(target = Vector3.new)
  @_quaternion ||= Quaternion.new
  self.get_world_quaternion(@_quaternion)
  target.set(0.0, 0.0, -1.0).qpply_quaternion(@_quaternion)
end

#look_at(vector) ⇒ Object



21
22
23
24
25
# File 'lib/mittsu/cameras/camera.rb', line 21

def look_at(vector)
  @_m1 ||= Matrix4.new
  @_m1.look_at(@position, vector, @up)
  @quaternion.set_from_rotation_matrix(@_m1)
end