mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-31 05:51:47 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user