🌈 Create new beautiful Compose Gradients with our new wesite ->
Class

PathIterator.ConicEvaluation

Used to define how conic segments are evaluated when iterating over a Path using PathIterator.

Source set: Common
public enum class ConicEvaluation {
        /** Conic segments are returned as conic segments. */
        AsConic,

        /**
         * Conic segments are returned as quadratic approximations. The quality of the approximation
         * is defined by a tolerance value.
         */
        AsQuadratics,
    }

Used to define how conic segments are evaluated when iterating over a Path using PathIterator.

Members

AsConic

Source set: Common
AsConic

Conic segments are returned as conic segments.

AsQuadratics

Source set: Common
AsQuadratics

Conic segments are returned as quadratic approximations. The quality of the approximation is defined by a tolerance value.