Sha256: e62225f102846c98c877bb0e2fed5f029b50c5ac918d3c2bf04d3d76c2233a8b

Contents?: true

Size: 480 Bytes

Versions: 4

Compression:

Stored size: 480 Bytes

Contents

//
//  B2DRayCastInput.h
//  Box2D
//
//  Created by Juan Jose Karam on 6/15/13.
//  Copyright (c) 2013 Joybox. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface B2DRayCastInput : NSObject {
  CGPoint point1;
  CGPoint point2;
  Float32 maxFraction;
}

@property (nonatomic, assign) CGPoint point1;
@property (nonatomic, assign) CGPoint point2;
@property (nonatomic, assign) Float32 maxFraction;

- (id)initWithRayCastInput:(b2RayCastInput)rayCastInput;

@end

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
joybox-1.1.1 vendor/vendor-ios/box_2d/box_2d_include/B2DRayCastInput.h
joybox-1.1.1 vendor/vendor-osx/box_2d/box_2d_include/B2DRayCastInput.h
joybox-1.1.0 vendor/vendor-ios/box_2d/box_2d_include/B2DRayCastInput.h
joybox-1.1.0 vendor/vendor-osx/box_2d/box_2d_include/B2DRayCastInput.h