Class: Raylib::PhysicsManifoldData
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::PhysicsManifoldData
- Defined in:
- lib/physac.rb
Instance Method Summary collapse
- #bodyA ⇒ Object
- #bodyA=(v) ⇒ Object
- #bodyB ⇒ Object
- #bodyB=(v) ⇒ Object
- #contacts ⇒ Object
- #contacts=(v) ⇒ Object
- #contactsCount ⇒ Object
- #contactsCount=(v) ⇒ Object
- #dynamicFriction ⇒ Object
- #dynamicFriction=(v) ⇒ Object
- #id ⇒ Object
- #id=(v) ⇒ Object
- #normal ⇒ Object
- #normal=(v) ⇒ Object
- #penetration ⇒ Object
- #penetration=(v) ⇒ Object
- #restitution ⇒ Object
- #restitution=(v) ⇒ Object
- #staticFriction ⇒ Object
- #staticFriction=(v) ⇒ Object
Instance Method Details
#bodyA ⇒ Object
166 |
# File 'lib/physac.rb', line 166 def bodyA = self[:bodyA] |
#bodyA=(v) ⇒ Object
167 |
# File 'lib/physac.rb', line 167 def bodyA=(v) self[:bodyA] = v end |
#bodyB ⇒ Object
168 |
# File 'lib/physac.rb', line 168 def bodyB = self[:bodyB] |
#bodyB=(v) ⇒ Object
169 |
# File 'lib/physac.rb', line 169 def bodyB=(v) self[:bodyB] = v end |
#contacts ⇒ Object
174 |
# File 'lib/physac.rb', line 174 def contacts = self[:contacts] |
#contacts=(v) ⇒ Object
175 |
# File 'lib/physac.rb', line 175 def contacts=(v) self[:contacts] = v end |
#contactsCount ⇒ Object
176 |
# File 'lib/physac.rb', line 176 def contactsCount = self[:contactsCount] |
#contactsCount=(v) ⇒ Object
177 |
# File 'lib/physac.rb', line 177 def contactsCount=(v) self[:contactsCount] = v end |
#dynamicFriction ⇒ Object
180 |
# File 'lib/physac.rb', line 180 def dynamicFriction = self[:dynamicFriction] |
#dynamicFriction=(v) ⇒ Object
181 |
# File 'lib/physac.rb', line 181 def dynamicFriction=(v) self[:dynamicFriction] = v end |
#id ⇒ Object
164 |
# File 'lib/physac.rb', line 164 def id = self[:id] |
#id=(v) ⇒ Object
165 |
# File 'lib/physac.rb', line 165 def id=(v) self[:id] = v end |
#normal ⇒ Object
172 |
# File 'lib/physac.rb', line 172 def normal = self[:normal] |
#normal=(v) ⇒ Object
173 |
# File 'lib/physac.rb', line 173 def normal=(v) self[:normal] = v end |
#penetration ⇒ Object
170 |
# File 'lib/physac.rb', line 170 def penetration = self[:penetration] |
#penetration=(v) ⇒ Object
171 |
# File 'lib/physac.rb', line 171 def penetration=(v) self[:penetration] = v end |
#restitution ⇒ Object
178 |
# File 'lib/physac.rb', line 178 def restitution = self[:restitution] |
#restitution=(v) ⇒ Object
179 |
# File 'lib/physac.rb', line 179 def restitution=(v) self[:restitution] = v end |
#staticFriction ⇒ Object
182 |
# File 'lib/physac.rb', line 182 def staticFriction = self[:staticFriction] |
#staticFriction=(v) ⇒ Object
183 |
# File 'lib/physac.rb', line 183 def staticFriction=(v) self[:staticFriction] = v end |