Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / scenekit / SCNPhysicsShape.inc
Size: Mime:
{ Parsed from SceneKit.framework SCNPhysicsShape.h }


{$ifdef TYPES}
type
  SCNPhysicsShapePtr = ^SCNPhysicsShape;
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
var
  SCNPhysicsShapeTypeKey: NSString; cvar; external;
  SCNPhysicsShapeTypeBoundingBox: NSString; cvar; external;
  SCNPhysicsShapeTypeConvexHull: NSString; cvar; external;
  SCNPhysicsShapeTypeConcavePolyhedron: NSString; cvar; external;
  SCNPhysicsShapeKeepAsCompoundKey: NSString; cvar; external;
  SCNPhysicsShapeScaleKey: NSString; cvar; external;
{$endif}

{$ifdef CLASSES}

type
  SCNPhysicsShape = objcclass external (NSObject, NSCopyingProtocol, NSSecureCodingProtocol)
  private
    _reserved: id;
  public
    class function shapeWithGeometry_options (geometry: SCNGeometry; options: NSDictionary): instancetype; message 'shapeWithGeometry:options:';
    class function shapeWithNode_options (node: SCNNode; options: NSDictionary): instancetype; message 'shapeWithNode:options:';
    class function shapeWithShapes_transforms (shapes: NSArray; transforms: NSArray): instancetype; message 'shapeWithShapes:transforms:';

    { Adopted protocols }
    function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
    procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
    function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
    class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
  end;
{$endif}