Ejemplo n.º 1
0
 public static SCNSkinner Create(SCNGeometry baseGeometry,
                                 SCNNode [] bones, SCNMatrix4 [] boneInverseBindTransforms,
                                 SCNGeometrySource boneWeights, SCNGeometrySource boneIndices)
 {
     return(_Create(
                baseGeometry,
                bones,
                ToNSArray(boneInverseBindTransforms),
                boneWeights,
                boneIndices
                ));
 }
Ejemplo n.º 2
0
 public static SCNSkinner Create(SCNGeometry baseGeometry,
     SCNNode [] bones, SCNMatrix4 [] boneInverseBindTransforms,
     SCNGeometrySource boneWeights, SCNGeometrySource boneIndices)
 {
     return _Create (
         baseGeometry,
         bones,
         ToNSArray (boneInverseBindTransforms),
         boneWeights,
         boneIndices
     );
 }
Ejemplo n.º 3
0
 public static NSObject FromSources(SCNGeometrySource [] sources, SCNGeometryElement [] elements)
 {
     return Create (sources, elements);
 }