Port new GlyphContext, FontData, enums, props, Bezier and text rendering

This commit is contained in:
Mikael Sand
2017-08-23 05:41:35 +03:00
parent 3cafc34cb2
commit ccb8729917
105 changed files with 10437 additions and 105 deletions
@@ -0,0 +1,15 @@
//
// UIBezierPath+getTransformAtDistance.h
// RNSVG
//
// Created by Janne Gylling on 18/08/2017.
//
//
#import <UIKit/UIKit.h>
@interface UIBezierPath (getTransformAtDistance)
- (CGAffineTransform)getTransformAtDistance:(CGFloat)distance;
@end
@@ -0,0 +1,18 @@
//
// UIBezierPath+getTransformAtDistance.m
// RNSVG
//
// Created by Janne Gylling on 18/08/2017.
//
//
#import "UIBezierPath+getTransformAtDistance.h"
@implementation UIBezierPath (getTransformAtDistance)
- (CGAffineTransform)getTransformAtDistance:(CGFloat)distance
{
return CGAffineTransformIdentity;
}
@end