示例#1
0
 public static SKPathEffect Create1DPath(SKPath path, float advance, float phase, SKPath1DPathEffectStyle style)
 {
     if (path == null)
     {
         throw new ArgumentNullException(nameof(path));
     }
     return(GetObject <SKPathEffect>(SkiaApi.sk_path_effect_create_1d_path(path.Handle, advance, phase, style)));
 }
示例#2
0
		public static SKPathEffect Create1DPath(SKPath path, float advance, float phase, SKPath1DPathEffectStyle style)
		{
			if (path == null)
				throw new ArgumentNullException(nameof(path));
			return GetObject<SKPathEffect>(SkiaApi.sk_path_effect_create_1d_path(path.Handle, advance, phase, style));
		}
示例#3
0
		public extern static sk_path_effect_t sk_path_effect_create_1d_path(sk_path_t path, float advance, float phase, SKPath1DPathEffectStyle style);