BoolValue

data class BoolValue(value: Boolean, manimObject: MObject) : PrimitiveValue

Bool Execution Value Class

Constructors

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

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(): Boolean
component2
Link copied to clipboard
operator fun component2(): MObject
copy
Link copied to clipboard
fun copy(value: Boolean, manimObject: MObject = EmptyMObject): BoolValue
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
'*'
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 BoolValue.
name
Link copied to clipboard
open override val name: String
: String name of value.
value
Link copied to clipboard
open override val value: Boolean
: Current boolean value.