Class: Box2D::FilterJointDef
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Box2D::FilterJointDef
- Defined in:
- lib/box2d_types.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.create_as(_base_, _internalValue_) ⇒ Object
933 934 935 936 937 938 |
# File 'lib/box2d_types.rb', line 933 def self.create_as(_base_, _internalValue_) instance = FilterJointDef.new instance[:base] = _base_ instance[:internalValue] = _internalValue_ instance end |
Instance Method Details
#base ⇒ Object
929 |
# File 'lib/box2d_types.rb', line 929 def base = self[:base] |
#base=(v) ⇒ Object
930 |
# File 'lib/box2d_types.rb', line 930 def base=(v) self[:base] = v end |
#internalValue ⇒ Object
931 |
# File 'lib/box2d_types.rb', line 931 def internalValue = self[:internalValue] |
#internalValue=(v) ⇒ Object
932 |
# File 'lib/box2d_types.rb', line 932 def internalValue=(v) self[:internalValue] = v end |