Example #1
0
		public static SKPathEffect CreateSum(SKPathEffect first, SKPathEffect second)
		{
			if (first == null)
				throw new ArgumentNullException(nameof(first));
			if (second == null)
				throw new ArgumentNullException(nameof(second));
			return GetObject<SKPathEffect>(SkiaApi.sk_path_effect_create_sum(first.Handle, second.Handle));
		}
Example #2
0
		public static SKPathEffect CreateCompose(SKPathEffect outer, SKPathEffect inner)
		{
			if (outer == null)
				throw new ArgumentNullException(nameof(outer));
			if (inner == null)
				throw new ArgumentNullException(nameof(inner));
			return GetObject<SKPathEffect>(SkiaApi.sk_path_effect_create_compose(outer.Handle, inner.Handle));
		}
Example #3
0
 public static SKPathEffect CreateSum(SKPathEffect first, SKPathEffect second)
 {
     if (first == null)
     {
         throw new ArgumentNullException(nameof(first));
     }
     if (second == null)
     {
         throw new ArgumentNullException(nameof(second));
     }
     return(GetObject <SKPathEffect>(SkiaApi.sk_path_effect_create_sum(first.Handle, second.Handle)));
 }
Example #4
0
 public static SKPathEffect CreateCompose(SKPathEffect outer, SKPathEffect inner)
 {
     if (outer == null)
     {
         throw new ArgumentNullException(nameof(outer));
     }
     if (inner == null)
     {
         throw new ArgumentNullException(nameof(inner));
     }
     return(GetObject <SKPathEffect>(SkiaApi.sk_path_effect_create_compose(outer.Handle, inner.Handle)));
 }