Binary Tree Node Value
data class BinaryTreeNodeValue(left: ITreeNodeValue, right: ITreeNodeValue, value: PrimitiveValue, manimObject: MObject, binaryTreeValue: BinaryTreeValue?, pathFromRoot: String, depth: Int) : ITreeNodeValue
Content copied to clipboard
Binary Tree Node Execution Value
Constructors
BinaryTreeNodeValue
Link copied to clipboard
fun BinaryTreeNodeValue(left: ITreeNodeValue = NullValue, right: ITreeNodeValue = NullValue, value: PrimitiveValue, manimObject: MObject = EmptyMObject, binaryTreeValue: BinaryTreeValue? = null, pathFromRoot: String = "", depth: Int)
Content copied to clipboard
: Creates a new Binary Tree Node Execution Value.
Functions
attachTree
Link copied to clipboard
fun attachTree(tree: BinaryTreeValue, prefix: String = "${tree.manimObject.ident}.root")
Content copied to clipboard
component1
Link copied to clipboard
component2
Link copied to clipboard
component3
Link copied to clipboard
component4
Link copied to clipboard
component5
Link copied to clipboard
component6
Link copied to clipboard
component7
Link copied to clipboard
copy
Link copied to clipboard
fun copy(left: ITreeNodeValue = NullValue, right: ITreeNodeValue = NullValue, value: PrimitiveValue, manimObject: MObject = EmptyMObject, binaryTreeValue: BinaryTreeValue? = null, pathFromRoot: String = "", depth: Int): BinaryTreeNodeValue
Content copied to clipboard
toInterpolatedString
Link copied to clipboard
Properties
binaryTreeValue
Link copied to clipboard
left
Link copied to clipboard
manimObject
Link copied to clipboard
pathFromRoot
Link copied to clipboard
right
Link copied to clipboard
value
Link copied to clipboard