MCPcopy Create free account
hub / github.com/ByteArena/box2d / B2JointDefInterface

Interface B2JointDefInterface

DynamicsB2Joint.go:80–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78}
79
80type B2JointDefInterface interface {
81 GetType() uint8
82 SetType(t uint8)
83 GetUserData() interface{}
84 SetUserData(userdata interface{})
85 GetBodyA() *B2Body
86 SetBodyA(body *B2Body)
87 GetBodyB() *B2Body
88 SetBodyB(body *B2Body)
89 IsCollideConnected() bool
90 SetCollideConnected(flag bool)
91}
92
93// Implementing B2JointDefInterface on B2Joint (used as a base struct)
94func (def B2JointDef) GetType() uint8 {

Callers

nothing calls this directly

Implementers 2

B2JointDefDynamicsB2Joint.go
B2JointDynamicsB2Joint.go

Calls

no outgoing calls

Tested by

no test coverage detected