All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jetbrains.skia.PathOp.kt Maven / Gradle / Ivy

The newest version!
package org.jetbrains.skia

/**
 * The logical operations that can be performed when combining two paths.
 */
enum class PathOp {
    /** subtract the op path from the first path  */
    DIFFERENCE,

    /** intersect the two paths  */
    INTERSECT,

    /** union (inclusive-or) the two paths  */
    UNION,

    /** exclusive-or the two paths  */
    XOR,

    /** subtract the first path from the op path  */
    REVERSE_DIFFERENCE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy