Package com. valgolang. runtime. datastructures. binarytree
Types
BinaryTreeExecutor
Link copied to clipboard
class BinaryTreeExecutor(variables: MutableMap<String, ExecValue>, linearRepresentation: MutableList<ManimInstr>, frame: VirtualMachine.Frame, stylesheet: Stylesheet, animationSpeeds: ArrayDeque<Double>, dataStructureBoundaries: MutableMap<String, BoundaryShape>, variableNameGenerator: VariableNameGenerator, codeTextVariable: String, locallyCreatedDynamicVariables: MutableSet<String>) : DataStructureExecutor
Content copied to clipboard
BinaryTreeNodeValue
Link copied to clipboard
data class BinaryTreeNodeValue(left: ITreeNodeValue, right: ITreeNodeValue, value: PrimitiveValue, manimObject: MObject, binaryTreeValue: BinaryTreeValue?, pathFromRoot: String, depth: Int) : ITreeNodeValue
Content copied to clipboard
BinaryTreeValue
Link copied to clipboard
data class BinaryTreeValue(manimObject: MObject, value: BinaryTreeNodeValue, style: StyleProperties, animatedStyle: AnimationProperties?) : ExecValue
Content copied to clipboard
ITreeNodeValue
Link copied to clipboard
NullValue
Link copied to clipboard