DoubleValue

data class DoubleValue(value: Double, manimObject: MObject) : DoubleAlias

Double Execution Value Class

Constructors

DoubleValue
Link copied to clipboard
fun DoubleValue(value: Double, manimObject: MObject = EmptyMObject)
: Creates a new DoubleValue.

Functions

clone
Link copied to clipboard
open override fun clone(): ExecValue
compareTo
Link copied to clipboard
operator fun compareTo(other: Any): Int
'==','!
component1
Link copied to clipboard
operator fun component1(): Double
component2
Link copied to clipboard
operator fun component2(): MObject
copy
Link copied to clipboard
fun copy(value: Double, manimObject: MObject = EmptyMObject): DoubleValue
div
Link copied to clipboard
operator fun div(other: ExecValue): ExecValue
'/'
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
minus
Link copied to clipboard
operator fun minus(other: ExecValue): ExecValue
'-'
not
Link copied to clipboard
operator fun not(): Boolean
'!
plus
Link copied to clipboard
operator fun plus(other: ExecValue): ExecValue
'+'
times
Link copied to clipboard
operator fun times(other: ExecValue): ExecValue
'*'
toDouble
Link copied to clipboard
open override fun toDouble(): Double
toInterpolatedString
Link copied to clipboard
open fun toInterpolatedString(): String
toString
Link copied to clipboard
open override fun toString(): String

Properties

manimObject
Link copied to clipboard
open override var manimObject: MObject
: Manim Object corresponded to by the DoubleValue.
name
Link copied to clipboard
open override val name: String
: String name of value.
value
Link copied to clipboard
open override val value: Double
: Current double value.