Example #1
0
 SegmentRangeSetBlendingFunction(int startSegment,
                                 int endSegment,
                                 GradientSegmentType blendingFunction)
 {
     if (!gimp_gradient_segment_range_set_blending_function(Name,
                                                            startSegment,
                                                            endSegment,
                                                            blendingFunction))
     {
         throw new GimpSharpException();
     }
 }
Example #2
0
 static extern bool gimp_gradient_segment_range_set_blending_function(string name,
     int start_segment,
     int end_segment,
     GradientSegmentType blending_function);
Example #3
0
 static extern bool gimp_gradient_segment_get_blending_function(string name,
     int segment,
     out GradientSegmentType blend_func);
Example #4
0
 public void SegmentRangeSetBlendingFunction(int startSegment, 
     int endSegment,
     GradientSegmentType blendingFunction)
 {
     if (!gimp_gradient_segment_range_set_blending_function(Name,
                          startSegment,
                          endSegment,
                          blendingFunction))
     {
       throw new GimpSharpException();
     }
 }
Example #5
0
 extern static bool gimp_gradient_segment_range_set_blending_function
     (string name,
     int start_segment,
     int end_segment,
     GradientSegmentType blending_function);
Example #6
0
 extern static bool gimp_gradient_segment_get_blending_function(string name,
                                                                int segment,
                                                                out GradientSegmentType blend_func);