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

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

The newest version!
package org.jetbrains.skia

/**
 * Cap draws at the beginning and end of an open path contour.
 */
enum class PaintStrokeCap {
    /**
     * No stroke extension
     */
    BUTT,

    /**
     * adds circle
     */
    ROUND,

    /**
     * adds square
     */
    SQUARE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy