Class: Mittsu::ParametricGeometry

Inherits:
Geometry
  • Object
show all
Defined in:
lib/mittsu/extras/geometries/parametric_geometry.rb

Constant Summary

Constants included from OpenGLGeometryLike

OpenGLGeometryLike::CONST_BUFFER_NAMES

Instance Attribute Summary

Attributes inherited from Geometry

#bounding_box, #bounding_sphere, #colors, #dynamic, #face_vertex_uvs, #faces, #groups, #has_tangents, #id, #initted, #line_distances, #morph_colors, #morph_normals, #morph_targets, #name, #skin_indices, #skin_weights, #type, #uuid, #vertices

Attributes included from OpenGLGeometryLike

#custom_attributes_list, #face_count, #faces3, #initted_arrays, #line_count, #morph_normals_arrays, #morph_normals_buffers, #morph_targets_arrays, #morph_targets_buffers, #num_morph_normals, #num_morph_targets, #num_vertices, #particle_count, #renderer, #type_array, #vertex_array_object

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Geometry

#apply_matrix, #center, #clone, #compute_bounding_box, #compute_bounding_sphere, #compute_face_normals, #compute_line_distances, #compute_morph_normals, #compute_tangents, #compute_vertex_normals, #create_line_buffers, #create_particle_buffers, #dispose, #from_buffer_geometry, #init_geometry_groups, #init_line_buffers, #init_particle_buffers, #merge, #merge_mesh, #merge_vertices, #set_line_buffers, #set_particle_buffers, #to_json

Methods included from OpenGLGeometryLike

#bind_vertex_array_object, #update_other_buffers, #update_vertex_buffer

Methods included from EventDispatcher

#add_event_listener, #dispatch_event, #has_event_listener, #remove_event_listener

Constructor Details

#initialize(func, slices, stacks) ⇒ ParametricGeometry

Returns a new instance of ParametricGeometry.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/mittsu/extras/geometries/parametric_geometry.rb', line 5

def initialize(func, slices, stacks)
  super()

  @type = 'ParametricGeometry'

  @parameters = {
    func:   func,
    slices: slices,
    stacks: stacks
  }

  from_buffer_geometry(ParametricBufferGeometry.new(func, slices, stacks))
  merge_vertices
end

Class Method Details

.kleinObject



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/mittsu/extras/geometries/parametric_geometry.rb', line 20

def self.klein
  -> (v, u, target = Vector3.new) {
    u *= ::Math::PI
    v *= 2.0 * ::Math::PI

    u = u * 2.0
    x = nil
    y = nil
    z = nil

    if u < ::Math::PI
      x = 3.0 * ::Math.cos(u) * (1.0 + ::Math.sin(u)) + (2.0 * (1.0 - ::Math.cos(u) / 2.0)) * ::Math.cos(u) * ::Math.cos(v)
      z = -8.0 * ::Math.sin(u) - 2.0 * (1.0 - ::Math.cos(u) / 2.0) * ::Math.sin(u) * ::Math.cos(v)
    else
      x = 3.0 * ::Math.cos(u) * (1.0 + ::Math.sin(u)) + (2.0 * (1.0 - ::Math.cos(u) / 2.0)) * ::Math.cos(v + ::Math::PI)
      z = -8.0 * ::Math.sin(u)
    end

    y = -2.0 * (1.0 - ::Math.cos(u) / 2.0) * ::Math.sin(v)

    target.set(x, y, z)
  }
end

.mobiusObject



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/mittsu/extras/geometries/parametric_geometry.rb', line 54

def self.mobius
  -> (u, t, target = Vector3.new) {
    # flat mobius strip
    # http://www.wolframalpha.com/input/?i=M%C3%B6bius+strip+parametric+equations&lk=1&a=ClashPrefs_*Surface.MoebiusStrip.SurfaceProperty.ParametricEquations-
    u = u - 0.5
    v = 2.0 * ::Math::PI * t

    a = 2.0

    x = ::Math.cos(v) * (a + u * ::Math.cos(v / 2.0))
    y = ::Math.sin(v) * (a + u * ::Math.cos(v / 2.0))
    z = u * ::Math.sin(v / 2)

    target.set(x, y, z)
  }
end

.mobius3dObject



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/mittsu/extras/geometries/parametric_geometry.rb', line 71

def self.mobius3d
  -> (u, t, target = Vector3.new) {
    # volumetric mobius strip

    u *= ::Math::PI
    t *= 2.0 * ::Math::PI

    u = u * 2.0
    phi = u / 2.0
    major = 2.25
    a = 0.125
    b = 0.65

    x = a * ::Math.cos(t) * ::Math.cos(phi) - b * ::Math.sin(t) * ::Math.sin(phi)
    z = a * ::Math.cos(t) * ::Math.sin(phi) + b * ::Math.sin(t) * ::Math.cos(phi)
    y = (major + x) * ::Math.sin(u)
    x = (major + x) * ::Math.cos(u)

    target.set(x, y, z)
  }
end

.plane(width, height) ⇒ Object



44
45
46
47
48
49
50
51
52
# File 'lib/mittsu/extras/geometries/parametric_geometry.rb', line 44

def self.plane(width, height)
  -> (u, v, target = Vector3.new) {
    x = u.to_f * width.to_f
    y = 0.0
    z = v.to_f * height.to_f

    target.set(x, y, z)
  }
end