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

commonMain.blend.SegmentExtensions.kt Maven / Gradle / Ivy

The newest version!
package org.openrndr.extra.shapes.blend

import org.openrndr.math.mix
import org.openrndr.shape.Segment2D
import org.openrndr.shape.Segment3D


/**
 * Cubic segment mix
 * @param other the segment to mix with
 * @param f0 the mix factor for the start point
 * @param f1 the mix factor for the first control point
 * @param f2 the mix factor for the second control point
 * @param f3 the mix factor for the end point
 */
fun Segment2D.mix(other: Segment2D, f0: Double, f1: Double, f2: Double, f3: Double): Segment2D {
    val ac = this.cubic
    val bc = other.cubic

    val acc = if (ac.corner) 1.0 else 0.0
    val bcc = if (bc.corner) 1.0 else 0.0

    return Segment2D(
        ac.start.mix(bc.start, f0),
        ac.control[0].mix(bc.control[0], f1),
        ac.control[1].mix(bc.control[1], f2),
        ac.end.mix(bc.end, f3),
        corner = mix(acc, bcc, f0) >= 0.5
    )
}

/**
 * Cubic segment mix
 * @param other the segment to mix with
 * @param f0 the mix factor for the start point
 * @param f1 the mix factor for the first control point
 * @param f2 the mix factor for the second control point
 * @param f3 the mix factor for the end point
 */
fun Segment3D.mix(other: Segment3D, f0: Double, f1: Double, f2: Double, f3: Double): Segment3D {
    val ac = this.cubic
    val bc = other.cubic

    return Segment3D(
        ac.start.mix(bc.start, f0),
        ac.control[0].mix(bc.control[0], f1),
        ac.control[1].mix(bc.control[1], f2),
        ac.end.mix(bc.end, f3),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy