2017-05-22 13:32:05 -07:00
|
|
|
//
|
|
|
|
// RSMultiLineRendererMeasurements.h
|
|
|
|
// RSTextDrawing
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 3/4/16.
|
2017-05-29 13:17:58 -07:00
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
2017-05-22 13:32:05 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
|
|
|
@interface RSMultiLineRendererMeasurements : NSObject
|
|
|
|
|
|
|
|
+ (instancetype)measurementsWithHeight:(NSInteger)height heightOfFirstLine:(NSInteger)heightOfFirstLine;
|
|
|
|
|
|
|
|
@property (nonatomic, readonly) NSInteger height;
|
|
|
|
@property (nonatomic, readonly) NSInteger heightOfFirstLine;
|
|
|
|
|
|
|
|
@end
|