Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
org.skia.jetski.TwoPointConicalGradient Class Reference
Inheritance diagram for org.skia.jetski.TwoPointConicalGradient:
org.skia.jetski.Gradient org.skia.jetski.Shader

Public Member Functions

 TwoPointConicalGradient (float x0, float y0, float r0, float x1, float y1, float r1, int[] colors, float[] pos, TileMode tm, @Nullable Matrix localMatrix) throws IllegalArgumentException
 
 TwoPointConicalGradient (float x0, float y0, float r0, float x1, float y1, float r1, int[] colors, float[] pos, TileMode tm) throws IllegalArgumentException
 
 TwoPointConicalGradient (float x0, float y0, float r0, float x1, float y1, float r1, float[] colors, float[] pos, TileMode tm, @Nullable Matrix localMatrix) throws IllegalArgumentException
 
 TwoPointConicalGradient (float x0, float y0, float r0, float x1, float y1, float r1, float[] colors, float[] pos, TileMode tm) throws IllegalArgumentException
 
- Public Member Functions inherited from org.skia.jetski.Shader
void release ()
 

Additional Inherited Members

- Protected Member Functions inherited from org.skia.jetski.Gradient
 Gradient (int[] colors, float[] pos, TileMode tm, Matrix lm, GradientFactory gf) throws IllegalArgumentException
 
 Gradient (float[] colors, float[] pos, TileMode tm, Matrix lm, GradientFactory gf) throws IllegalArgumentException
 
- Protected Member Functions inherited from org.skia.jetski.Shader
void finalize () throws Throwable
 
- Package Functions inherited from org.skia.jetski.Shader
 Shader (long native_instance)
 
long getNativeInstance ()
 

Detailed Description

Definition at line 13 of file TwoPointConicalGradient.java.

Constructor & Destructor Documentation

◆ TwoPointConicalGradient() [1/4]

org.skia.jetski.TwoPointConicalGradient.TwoPointConicalGradient ( float  x0,
float  y0,
float  r0,
float  x1,
float  y1,
float  r1,
int[]  colors,
float[]  pos,
TileMode  tm,
@Nullable Matrix  localMatrix 
) throws IllegalArgumentException
inline

Definition at line 14 of file TwoPointConicalGradient.java.

16 {
17 super(colors, pos, tm, localMatrix,
18 (c, p, t, m) -> nMakeTwoPointConical(x0, y0, r0, x1, y1, r1, c, p, t, m));
19 }
SkPoint pos

◆ TwoPointConicalGradient() [2/4]

org.skia.jetski.TwoPointConicalGradient.TwoPointConicalGradient ( float  x0,
float  y0,
float  r0,
float  x1,
float  y1,
float  r1,
int[]  colors,
float[]  pos,
TileMode  tm 
) throws IllegalArgumentException
inline

Definition at line 21 of file TwoPointConicalGradient.java.

23 {
24 this(x0, y0, r0, x1, y1, r1, colors, pos, tm, null);
25 }
PODArray< SkColor > colors
Definition SkRecords.h:276

◆ TwoPointConicalGradient() [3/4]

org.skia.jetski.TwoPointConicalGradient.TwoPointConicalGradient ( float  x0,
float  y0,
float  r0,
float  x1,
float  y1,
float  r1,
float[]  colors,
float[]  pos,
TileMode  tm,
@Nullable Matrix  localMatrix 
) throws IllegalArgumentException
inline

Definition at line 27 of file TwoPointConicalGradient.java.

29 {
30 super(colors, pos, tm, localMatrix,
31 (c, p, t, m) -> nMakeTwoPointConical(x0, y0, r0, x1, y1, r1, c, p, t, m));
32 }

◆ TwoPointConicalGradient() [4/4]

org.skia.jetski.TwoPointConicalGradient.TwoPointConicalGradient ( float  x0,
float  y0,
float  r0,
float  x1,
float  y1,
float  r1,
float[]  colors,
float[]  pos,
TileMode  tm 
) throws IllegalArgumentException
inline

Definition at line 34 of file TwoPointConicalGradient.java.

36 {
37 this(x0, y0, r0, x1, y1, r1, colors, pos, tm, null);
38 }

The documentation for this class was generated from the following file: