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

commonMain.frames.Path3DExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.4.5-alpha6
Show newest version
package org.openrndr.extra.shapes.frames

import org.openrndr.extra.shapes.rectify.RectifiedPath3D
import org.openrndr.math.Matrix44
import org.openrndr.math.Vector3
import org.openrndr.shape.Path3D

fun Path3D.frames(ascendingTs: List, up0: Vector3, analyticalDirections: Boolean) : List {
    val positions = ascendingTs.map { this.position(it) }
    val directions = if (analyticalDirections) ascendingTs.map { this.direction(it) } else emptyList()

    return frames(positions, directions, up0)
}

fun RectifiedPath3D.frames(ascendingTs: List, up0: Vector3, analyticalDirections: Boolean = true) : List {
    val positions = ascendingTs.map { this.position(it) }
    val directions = if (analyticalDirections) ascendingTs.map { this.direction(it) } else emptyList()

    return frames(positions, directions, up0)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy