mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-25 03:53:31 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#import "TextPathSide.h"
|
||||
|
||||
NSString* TextPathSideToString( enum TextPathSide fw )
|
||||
{
|
||||
return TextPathSideStrings[fw];
|
||||
}
|
||||
|
||||
enum TextPathSide TextPathSideFromString( NSString* s )
|
||||
{
|
||||
NSInteger i;
|
||||
NSString* fw;
|
||||
for (i = 0; fw = TextPathSideStrings[i], fw != nil; i++) {
|
||||
if ([fw isEqualToString:s]) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return TextPathSideDEFAULT;
|
||||
}
|
||||
Reference in New Issue
Block a user