Sha256: 2df5a08097ae37d6888aab5dead6b1688437a24312e4d20b75d48ce93908cb64

Contents?: true

Size: 833 Bytes

Versions: 4

Compression:

Stored size: 833 Bytes

Contents

//
//  B2DEdgeShape.h
//  Box2D
//
//  Created by Juan Jose Karam on 2/19/13.
//  Copyright (c) 2013 Joybox. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "B2DShape.h"

@interface B2DEdgeShape : B2DShape

@property (nonatomic, assign, readonly) CGPoint startVertex;
@property (nonatomic, assign, readonly) CGPoint endVertex;
@property (nonatomic, assign, readonly) bool hasStartAdjacentVertex;
@property (nonatomic, assign, readonly) CGPoint startAdjacentVertex;
@property (nonatomic, assign, readonly) bool hasEndAdjacentVertex;
@property (nonatomic, assign, readonly) CGPoint endAdjacentVertex;

- (id)initWithStartVertex:(CGPoint)startVertex endVertex:(CGPoint)endVertex;


#pragma mark - Deprecated

- (id)initWithStartPoint:(CGPoint)startPoint endPoint:(CGPoint)endPoint __attribute__ ((deprecated));

@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/B2DEdgeShape.h
joybox-1.1.1 vendor/vendor-osx/box_2d/box_2d_include/B2DEdgeShape.h
joybox-1.1.0 vendor/vendor-ios/box_2d/box_2d_include/B2DEdgeShape.h
joybox-1.1.0 vendor/vendor-osx/box_2d/box_2d_include/B2DEdgeShape.h