diff --git a/docs/classes/AEG_AEGTree.AEGTree.html b/docs/classes/AEG_AEGTree.AEGTree.html index aeabeca1..3089510a 100644 --- a/docs/classes/AEG_AEGTree.AEGTree.html +++ b/docs/classes/AEG_AEGTree.AEGTree.html @@ -1,7 +1,7 @@ AEGTree | peircemyheart - v1.0.0

Represents an AEG tree structure. This tree is a hierarchical composition of AtomNodes and CutNodes. Its height corresponds to the deepest CutNode nesting within.

-

Constructors

Constructors

Accessors

Methods

canInsert clear @@ -15,40 +15,40 @@ verify

Constructors

  • Constructs The Sheet of Assertion of this AEGTree.

    Parameters

    • Optionalsheet: CutNode

      Existing CutNode used to construct The Sheet of Assertion for this AEGTree.

      -

    Returns AEGTree

Accessors

  • get sheet(): CutNode
  • Gets The Sheet of Assertion of this AEGTree.

    +

Returns AEGTree

Accessors

  • get sheet(): CutNode
  • Gets The Sheet of Assertion of this AEGTree.

    Returns CutNode

    The Sheet of Assertion of this AEGTree.

    -
  • set sheet(sheet): void
  • Set The Sheet of Assertion of this AEGTree to the incoming CutNode.

    +
  • set sheet(sheet): void
  • Set The Sheet of Assertion of this AEGTree to the incoming CutNode.

    Parameters

    Returns void

Methods

  • Checks whether the incoming node can be inserted into this AEGTree.

    +

Returns void

Methods

  • Checks whether the incoming node can be inserted into this AEGTree.

    Parameters

    Returns boolean

    True if the incomingNode can be inserted.

    -
  • Removes all of The Sheet of Assertion's children.

    -

    Returns void

  • Finds the depth of the node within the tree.

    +
  • Removes all of The Sheet of Assertion's children.

    +

    Returns void

  • Finds the depth of the node within the tree.

    Parameters

    Returns number

    The level of the searched for node

    -
  • Finds the lowest node that contains the point in the AEG.

    Parameters

    • incomingPoint: Point

      The point on the canvas

    Returns null | AtomNode | CutNode

    The lowest node containing the point

    -
  • Finds the parent of the lowest node that contains the point in the AEG.

    +
  • Finds the parent of the lowest node that contains the point in the AEG.

    Parameters

    • incomingPoint: Point

      The point on the canvas

    Returns null | CutNode

    The parent of the lowest node containing the point

    -
  • Inserts the incoming node into this tree, if insertion is possible.

    +
  • Inserts the incoming node into this tree, if insertion is possible.

    Parameters

    Returns boolean

    Error If insertion of incomingNode is not possible.

    -
  • Checks if this AEGTree is equal to the incoming AEGTree. +

  • Checks if this AEGTree is equal to the incoming AEGTree. These are considered equal if they have the same children and the same number of children in the same hierarchy. In a given CutNode, these children do not have to be in the same order to be considered equal.

    Parameters

    • otherTree: AEGTree

      incoming AEGTree.

    Returns boolean

    True if the trees are equal by the above metric.

    -
  • Removes the node containing the incoming Point.

    +
  • Removes the node containing the incoming Point.

    Parameters

    • incomingPoint: Point

      Incoming Point.

    Returns boolean

    True if the node containing incomingPoint was removed.

    -
  • Returns a string representation of this AEGTree.

    +
  • Returns a string representation of this AEGTree.

    Returns string

    Structured ordering of all children in this AEGTree in string form.

    -
  • Verifies the structural consistency of this AEGTree.

    +
  • Verifies the structural consistency of this AEGTree.

    Structural consistency is achieved when: All bounding boxes of The Sheet's children do not overlap, The same is true for each CutNode within The Sheet and that CutNode's children, And none of the children at any cut level overlap each other.

    Returns boolean

    True if structural consistency is achieved.

    -
+
diff --git a/docs/classes/AEG_AtomNode.AtomNode.html b/docs/classes/AEG_AtomNode.AtomNode.html index 45ca0cf3..f3cafee2 100644 --- a/docs/classes/AEG_AtomNode.AtomNode.html +++ b/docs/classes/AEG_AtomNode.AtomNode.html @@ -1,7 +1,7 @@ AtomNode | peircemyheart - v1.0.0

Defines an Atom. Atoms are propositions in Peirce's AEG system. Peirce My Heart only handles single character identifiers as of 1.0.0.

-

Constructors

Constructors

Accessors

height identifier origin @@ -16,36 +16,36 @@
  • origin: Point

    Top left corner of this AtomNode's boundary box.

  • width: number

    Width of this AtomNode's boundary box.

  • height: number

    Height of this AtomNode's boundary box.

    -
  • Returns AtomNode

    Accessors

    • get height(): number
    • Gets the height of this AtomNode.

      +

    Returns AtomNode

    Accessors

    • get height(): number
    • Gets the height of this AtomNode.

      Returns number

      Height of this AtomNode.

      -
    • set height(height): void
    • Set the height of this AtomNode to the incoming height.

      +
    • set height(height): void
    • Set the height of this AtomNode to the incoming height.

      Parameters

      • height: number

        Incoming height.

        -

      Returns void

    • get identifier(): string
    • Gets the identifier of this AtomNode.

      +

    Returns void

    Returns void

    Returns void

    Methods

    • Creates and returns a Rectangle based off the origin, width, and height of this AtomNode. +

    Returns void

    Methods

    • Creates and returns a Rectangle based off the origin, width, and height of this AtomNode. internalHeight is subtracted from internalOrigin to move the origin Point from the bottom left to top right of the boundary box.

      Returns Rectangle

      Rectangle based off this AtomNode's measurements.

      -
    • Checks whether a Point is contained within this AtomNode.

      +
    • Checks whether a Point is contained within this AtomNode.

      Parameters

      • otherPoint: Point

        Point that may be contained within this AtomNode.

      Returns boolean

      True if the Point is contained within this AtomNode.

      -
    • Creates and returns a deep copy (an exact copy not at the same memory address) of this AtomNode.

      +
    • Creates and returns a deep copy (an exact copy not at the same memory address) of this AtomNode.

      Returns AtomNode

      Deep copy of this AtomNode.

      -
    • Checks if this AtomNode is equal to the incoming AtomNode. +

    • Checks if this AtomNode is equal to the incoming AtomNode. They are considered equal if and only if they both contain the same proposition.

      Parameters

      Returns boolean

      True if they contain the same proposition.

      -
    • Creates and returns the string representation of this AtomNode.

      +
    • Creates and returns the string representation of this AtomNode.

      Returns string

      Proposition and boundary box of this AtomNode in string form.

      -
    +
    diff --git a/docs/classes/AEG_CutNode.CutNode.html b/docs/classes/AEG_CutNode.CutNode.html index a164cfb2..9604fb96 100644 --- a/docs/classes/AEG_CutNode.CutNode.html +++ b/docs/classes/AEG_CutNode.CutNode.html @@ -2,7 +2,7 @@ Cuts are negations in Peirce's AEG system. Cuts may be empty, and cuts may contain one or more AtomNodes and CutNodes as children. Both are valid cuts.

    -

    Constructors

    Constructors

    Accessors

    child children ellipse @@ -23,30 +23,30 @@ The list of children is not required, since empty CutNodes are valid.

    Parameters

    • ellipse: null | Ellipse

      Incoming Ellipse. For only The Sheet of Assertion, this will be null.

    • OptionalchildList: (AtomNode | CutNode)[]

      List of nodes nested within this CutNode.

      -

    Returns CutNode

    Accessors

    • set child(child): void
    • Adds a child, an AtomNode or CutNode with zero or more children, to this CutNode's children.

      +

    Returns CutNode

    Accessors

    • set child(child): void
    • Adds a child, an AtomNode or CutNode with zero or more children, to this CutNode's children.

      Parameters

      Returns void

    Returns void

    • get children(): (AtomNode | CutNode)[]
    • Gets the children of this CutNode.

      Returns (AtomNode | CutNode)[]

      Children of this CutNode.

      -
    • set children(list): void
    • Sets the children of this CutNode to the incoming list of AtomNodes and CutNodes.

      +
    • set children(list): void
    • Sets the children of this CutNode to the incoming list of AtomNodes and CutNodes.

      Parameters

      Returns void

    • get ellipse(): null | Ellipse
    • Gets the bounding Ellipse of this CutNode.

      +

    Returns void

    • get ellipse(): null | Ellipse
    • Gets the bounding Ellipse of this CutNode.

      Returns null | Ellipse

      Bounding Ellipse of this CutNode. Null for The Sheet of Assertion.

      -
    • set ellipse(ellipse): void
    • Sets the bounding Ellipse of this CutNode to the incoming Ellipse.

      +
    • set ellipse(ellipse): void
    • Sets the bounding Ellipse of this CutNode to the incoming Ellipse.

      Parameters

      • ellipse: null | Ellipse

        Incoming Ellipse.

        -

      Returns void

    Methods

    • Completely removes all of this CutNode's children.

      -

      Returns void

    • Checks whether the incoming node is contained within this CutNode.

      +

    Returns void

    Methods

    • Completely removes all of this CutNode's children.

      +

      Returns void

    • Checks whether the incoming node is contained within this CutNode.

      Parameters

      • otherNode: AtomNode | CutNode

        Node that may be contained within this CutNode.

      Returns boolean

      True if otherNode is contained within this CutNode.

      -
    • Checks whether the incoming Point is contained within this CutNode.

      +
    • Checks whether the incoming Point is contained within this CutNode.

      Parameters

      • otherPoint: Point

        Point that may be contained within this CutNode.

      Returns boolean

      True if the Point is contained within this CutNode.

      -
    • Creates and returns a deep copy (an exact copy not at the same memory address) of this CutNode.

      +
    • Creates and returns a deep copy (an exact copy not at the same memory address) of this CutNode.

      Returns CutNode

      Deep copy of this CutNode.

      -
    • Determines and returns the deepest CutNode in which the incoming node can fit. +

    • Determines and returns the deepest CutNode in which the incoming node can fit. Deepest here refers to how far down the returned CutNode is in the AEGTree.

      Parameters

      Returns CutNode

      Deepest CutNode in which newNode can fit.

      -
    • Determines and returns the deepest level the incoming node is found in. +

    • Determines and returns the deepest level the incoming node is found in. Here, level refers to the number of cuts in the AEGTree. For instance, The Sheet of Assertion is level 0, Inside a CutNode on the Sheet of Assertion would be level 1, so on and so forth.

      @@ -55,32 +55,32 @@

      Parameters

      • incomingNode: AtomNode | CutNode

        Incoming node.

      • currentLevel: number

        Current cut level.

      Returns number

      Deepest cut level incomingNode is found in.

      -
    • Determines and returns the deepest node containing the incoming Point. Returns null if this node does not contain the incoming Point.

      Parameters

      • incomingPoint: Point

        Incoming Point.

      Returns null | AtomNode | CutNode

      Deepest node containing incomingPoint.

      -
    • Determines and returns the parent CutNode of the deepest node containing the incoming Point.

      +
    • Determines and returns the parent CutNode of the deepest node containing the incoming Point.

      Parameters

      • incomingPoint: Point

        Incoming Point.

      Returns null | CutNode

      Parent CutNode of the deepest node containing incomingPoint. Null if none of the children contain incomingPoint.

      Error If incomingPoint is not contained in this CutNode.

      -
    • Checks whether this CutNode is The Sheet of Assertion and also empty.

      +
    • Checks whether this CutNode is The Sheet of Assertion and also empty.

      Returns boolean

      True if this is an empty Sheet of Assertion.

      -
    • Checks if this CutNode is equal to the incoming CutNode. +

    • Checks if this CutNode is equal to the incoming CutNode. They are considered equal if they have the same children and the same number of children. These children do not have to be in the same order in the children list to be considered equal.

      Parameters

      • otherCut: CutNode

        Incoming CutNode.

      Returns boolean

      True if this CutNode and otherCut are equal by the above metric.

      -
    • Removes the lowest child of this CutNode that contains the incoming Point.

      +
    • Removes the lowest child of this CutNode that contains the incoming Point.

      Parameters

      • incomingPoint: Point

        Incoming Point.

      Returns boolean

      True if the node containing incomingPoint was removed. False if this CutNode nor its children contain incomingPoint.

      -
    • Creates and returns a string representation of this CutNode and all its children. +

    • Creates and returns a string representation of this CutNode and all its children. This CutNode may be The Sheet of Assertion or the root of any subtree.

      () - CutNode. char - AtomNode. (char char ()) - Valid nesting of two AtomNodes and a CutNode inside another CutNode.

      Returns string

      String form of this CutNode and all its children according to the above format.

      James Oswald

      -
    • Creates and returns a string representation of this CutNode.

      +
    • Creates and returns a string representation of this CutNode.

      Returns string

      Children and boundary of this CutNode in string form.

      -
    +
    diff --git a/docs/classes/AEG_Ellipse.Ellipse.html b/docs/classes/AEG_Ellipse.Ellipse.html index 17ade85c..4503483d 100644 --- a/docs/classes/AEG_Ellipse.Ellipse.html +++ b/docs/classes/AEG_Ellipse.Ellipse.html @@ -1,4 +1,4 @@ -Ellipse | peircemyheart - v1.0.0

    Constructors

    constructor +Ellipse | peircemyheart - v1.0.0

    Constructors

    Properties

    boundingBox center radiusX @@ -12,19 +12,19 @@
  • radX: number

    Incoming horizontal radius of this Ellipse.

  • radY: number

    Incoming vertical radius of this Ellipse.

  • Returns Ellipse

    Errors on NaN, Infinity, and negative radii lengths.

    -

    Properties

    boundingBox: Rectangle

    Bounding box of this Ellipse.

    -
    center: Point

    Center of this Ellipse.

    -
    radiusX: number

    Horizontal radius of this Ellipse.

    -
    radiusY: number

    Vertical radius of this Ellipse.

    -

    Methods

    • Checks whether some other other shape is contained within this Ellipse.

      +

    Properties

    boundingBox: Rectangle

    Bounding box of this Ellipse.

    +
    center: Point

    Center of this Ellipse.

    +
    radiusX: number

    Horizontal radius of this Ellipse.

    +
    radiusY: number

    Vertical radius of this Ellipse.

    +

    Methods

    • Checks whether some other other shape is contained within this Ellipse.

      Parameters

      • otherShape: Rectangle | Ellipse

        Shape that may be contained within this Ellipse.

      Returns boolean

      True if the shape is contained within this Ellipse.

      -
    • Checks whether a Point is contained within this Ellipse.

      +
    • Checks whether a Point is contained within this Ellipse.

      Parameters

      • point: Point

        Point that may be contained within this Ellipse.

      Returns boolean

      True if the Point is contained within this Ellipse.

      -
    • Checks whether this Ellipse overlaps some other shape.

      +
    • Checks whether this Ellipse overlaps some other shape.

      Parameters

      Returns boolean

      True if there is an overlap.

      -
    • Creates and returns the string representation of this Ellipse.

      +
    • Creates and returns the string representation of this Ellipse.

      Returns string

      Coordinates and radii for this Ellipse in string form.

      -
    +
    diff --git a/docs/classes/AEG_Point.Point.html b/docs/classes/AEG_Point.Point.html index e40f5385..2e1f52f7 100644 --- a/docs/classes/AEG_Point.Point.html +++ b/docs/classes/AEG_Point.Point.html @@ -1,7 +1,7 @@ Point | peircemyheart - v1.0.0

    Defines a 2D Point.

    Ryan R

    Anusha Tiwari

    -

    Constructors

    Constructors

    Properties

    x y

    Methods

    distance @@ -11,13 +11,13 @@

    Properties

    x: number

    x-coordinate of this Point.

    -
    y: number

    y-coordinate of this Point.

    -

    Methods

    • Calculates and returns the distance between this Point and the other incoming Point.

      +

    Properties

    x: number

    x-coordinate of this Point.

    +
    y: number

    y-coordinate of this Point.

    +

    Methods

    • Calculates and returns the distance between this Point and the other incoming Point.

      Parameters

      • otherPoint: Point

        Other incoming Point.

      Returns number

      Distance between the two Points.

      -
    • Sets this Point's coordinates according to the incoming coordinates.

      +
    • Sets this Point's coordinates according to the incoming coordinates.

      Parameters

      • coordX: number
      • coordY: number

      Returns void

      Error on receiving NaN or Infinity values as coordinates.

      -
    • Creates and returns a readable string representation of this Point.

      +
    • Creates and returns a readable string representation of this Point.

      Returns string

      Coordinates of this Point in string form.

      -
    +
    diff --git a/docs/classes/AEG_Rectangle.Rectangle.html b/docs/classes/AEG_Rectangle.Rectangle.html index f9a06aeb..cf454bef 100644 --- a/docs/classes/AEG_Rectangle.Rectangle.html +++ b/docs/classes/AEG_Rectangle.Rectangle.html @@ -1,4 +1,4 @@ -Rectangle | peircemyheart - v1.0.0

    Constructors

    constructor +Rectangle | peircemyheart - v1.0.0

    Constructors

    Properties

    height startVertex width @@ -11,23 +11,23 @@

    Parameters

    • vertex: Point

      Incoming starting Point of this Rectangle.

    • w: number

      Incoming width of the rectangle.

    • h: number

      Incoming height of the rectangle.

      -

    Returns Rectangle

    Properties

    height: number

    Height of this Rectangle.

    -
    startVertex: Point

    Starting (top left) vertex of this Rectangle.

    -
    width: number

    Width of this Rectangle.

    -

    Methods

    • Checks whether another shape is contained within this Rectangle.

      +

    Returns Rectangle

    Properties

    height: number

    Height of this Rectangle.

    +
    startVertex: Point

    Starting (top left) vertex of this Rectangle.

    +
    width: number

    Width of this Rectangle.

    +

    Methods

    • Checks whether another shape is contained within this Rectangle.

      Parameters

      • otherShape: Rectangle | Ellipse

        Shape that may be contained within this Rectangle.

      Returns boolean

      True if the shape is contained within this Rectangle.

      -
    • Checks whether the incoming Point is inside this Rectangle.

      -

      Parameters

      Returns boolean

    • Checks whether the incoming Point is inside this Rectangle.

      +

      Parameters

      Returns boolean

    • Creates a Point array of the corners of this Rectangle in clockwise order, starting from the top left. vertices[0] = Top left vertex. vertices[1] = Top right vertex. vertices[2] = Bottom right vertex. vertices[3] = Bottom left vertex.

      Returns Point[]

      Bounding box of this Rectangle in Point array form.

      -
    • Checks whether there is an overlap between this Rectangle and some other shape.

      +
    • Checks whether there is an overlap between this Rectangle and some other shape.

      Parameters

      Returns boolean

      True if there is an overlap.

      -
    • Creates and returns a string representation of this Rectangle.

      +
    • Creates and returns a string representation of this Rectangle.

      Returns string

      This Rectangle in string form.

      -
    +
    diff --git a/docs/classes/TreeContext.TreeContext.html b/docs/classes/TreeContext.TreeContext.html index 5b6bcea9..3c777377 100644 --- a/docs/classes/TreeContext.TreeContext.html +++ b/docs/classes/TreeContext.TreeContext.html @@ -1,4 +1,4 @@ -TreeContext | peircemyheart - v1.0.0

    Constructors

    constructor +TreeContext | peircemyheart - v1.0.0

    Constructors

    Properties

    currentProofStep: undefined | ProofModeNode
    drawHistoryRedoStack: DrawModeNode[] = []
    drawHistoryUndoStack: DrawModeNode[] = []
    modeState: "Draw" | "Proof" = "Draw"
    proof: ProofModeNode[] = []
    proofHistoryRedoStack: ProofModeNode[] = []
    selectForProof: AEGTree = ...
    toolState: Tool = Tool.none
    tree: AEGTree = ...

    Methods

    • Resets the proof history array and eliminates all proof steps.

      -

      Returns void

    • Returns the most recent step in the proof.

      +

    Constructors

    Properties

    currentProofStep: undefined | ProofModeNode
    drawHistoryRedoStack: DrawModeNode[] = []
    drawHistoryUndoStack: DrawModeNode[] = []
    modeState: "Draw" | "Proof" = "Draw"
    proof: ProofModeNode[] = []
    proofHistoryRedoStack: ProofModeNode[] = []
    selectForProof: AEGTree = ...
    toolState: Tool = Tool.none
    tree: AEGTree = ...

    Methods

    • Resets the proof history array and eliminates all proof steps.

      +

      Returns void

    • Returns the most recent step in the proof.

      Returns ProofModeNode

      Most recent step in the proof.

      -
    • Adds the incoming DrawModeMove and the current tree to drawHistory.

      +
    • Adds the incoming DrawModeMove and the current tree to drawHistory.

      Parameters

      • newlyAppliedStep: DrawModeMove

        Incoming DrawModeMove.

        -

      Returns void

    • Adds the incoming ProofNode into proof and creates a new button for the step +

    Returns void

    +

    Returns void

    diff --git a/docs/enums/TreeContext.Tool.html b/docs/enums/TreeContext.Tool.html index 6b8776c5..1d6e1179 100644 --- a/docs/enums/TreeContext.Tool.html +++ b/docs/enums/TreeContext.Tool.html @@ -1,5 +1,5 @@ Tool | peircemyheart - v1.0.0

    Represents the current tool in use.

    -

    Enumeration Members

    Enumeration Members

    atomTool: 1
    copyFromDrawTool: 11
    copyMultiTool: 7
    copySingleTool: 6
    cutTool: 2
    deiterationTool: 21
    deleteMultiTool: 9
    deleteSingleTool: 8
    doubleCutDeletionTool: 14
    doubleCutInsertionTool: 13
    dragTool: 3
    drawClearTool: 23
    drawMoveMultiTool: 5
    drawMoveSingleTool: 4
    erasureTool: 16
    insertionTool: 15
    iterationTool: 20
    none: 0
    pasteInProofTool: 12
    proofClearTool: 22
    proofMoveMultiTool: 18
    proofMoveSingleTool: 17
    proofResizeTool: 19
    resizeTool: 10
    +

    Enumeration Members

    atomTool: 1
    copyFromDrawTool: 11
    copyMultiTool: 7
    copySingleTool: 6
    cutTool: 2
    deiterationTool: 21
    deleteMultiTool: 9
    deleteSingleTool: 8
    doubleCutDeletionTool: 14
    doubleCutInsertionTool: 13
    dragTool: 3
    drawClearTool: 23
    drawMoveMultiTool: 5
    drawMoveSingleTool: 4
    erasureTool: 16
    insertionTool: 15
    iterationTool: 20
    none: 0
    pasteInProofTool: 12
    proofClearTool: 22
    proofMoveMultiTool: 18
    proofMoveSingleTool: 17
    proofResizeTool: 19
    resizeTool: 10
    diff --git a/docs/functions/AEG_AEGUtils.getEllipsePoints.html b/docs/functions/AEG_AEGUtils.getEllipsePoints.html index a29b541f..6c80aa0f 100644 --- a/docs/functions/AEG_AEGUtils.getEllipsePoints.html +++ b/docs/functions/AEG_AEGUtils.getEllipsePoints.html @@ -1,4 +1,4 @@ getEllipsePoints | peircemyheart - v1.0.0
    • Calculates and returns the Points along the boundary of the incoming Ellipse.

      Parameters

      Returns Point[]

      Points along the boundary of ellipse.

      -
    +
    diff --git a/docs/functions/AEG_AEGUtils.pointInRect.html b/docs/functions/AEG_AEGUtils.pointInRect.html index 78c0d073..f3ad12ce 100644 --- a/docs/functions/AEG_AEGUtils.pointInRect.html +++ b/docs/functions/AEG_AEGUtils.pointInRect.html @@ -1,4 +1,4 @@ pointInRect | peircemyheart - v1.0.0
    • Checks whether the incoming Point is inside the incoming Rectangle.

      Parameters

      Returns boolean

      True, if otherPoint is contained within rect.

      -
    +
    diff --git a/docs/functions/AEG_AEGUtils.shapeContains.html b/docs/functions/AEG_AEGUtils.shapeContains.html index 0c1c9ff8..750a4162 100644 --- a/docs/functions/AEG_AEGUtils.shapeContains.html +++ b/docs/functions/AEG_AEGUtils.shapeContains.html @@ -4,4 +4,4 @@

    Parameters

    Returns boolean

    True, if outerShape contains innerShape.

    -
    +
    diff --git a/docs/functions/AEG_AEGUtils.shapesIntersect.html b/docs/functions/AEG_AEGUtils.shapesIntersect.html index 75528435..c999f4c8 100644 --- a/docs/functions/AEG_AEGUtils.shapesIntersect.html +++ b/docs/functions/AEG_AEGUtils.shapesIntersect.html @@ -2,4 +2,4 @@

    Parameters

    Returns boolean

    True, if newShape intersects existingShape.

    -
    +
    diff --git a/docs/functions/AEG_AEGUtils.shapesOverlap.html b/docs/functions/AEG_AEGUtils.shapesOverlap.html index a0e7da42..b8fb4ea9 100644 --- a/docs/functions/AEG_AEGUtils.shapesOverlap.html +++ b/docs/functions/AEG_AEGUtils.shapesOverlap.html @@ -5,4 +5,4 @@

    Parameters

    Returns boolean

    True, if newShape overlaps existingShape.

    -
    +
    diff --git a/docs/functions/AEG_AEGUtils.signedDistanceFromEllipse.html b/docs/functions/AEG_AEGUtils.signedDistanceFromEllipse.html index 5f839ea4..2dc2bcb3 100644 --- a/docs/functions/AEG_AEGUtils.signedDistanceFromEllipse.html +++ b/docs/functions/AEG_AEGUtils.signedDistanceFromEllipse.html @@ -1,4 +1,4 @@ signedDistanceFromEllipse | peircemyheart - v1.0.0

    Function signedDistanceFromEllipse

    • Calculates and returns the signed distance of the incoming Point with respect to the incoming Ellipse.

      Parameters

      Returns number

      0, if point is on ellipse.

      -
    +
    diff --git a/docs/functions/AEG_IO.aegJsonString.html b/docs/functions/AEG_IO.aegJsonString.html index af88b003..af67b322 100644 --- a/docs/functions/AEG_IO.aegJsonString.html +++ b/docs/functions/AEG_IO.aegJsonString.html @@ -2,4 +2,4 @@ Uses tab characters as delimiters.

    Parameters

    Returns string

    json string of treeData.

    -
    +
    diff --git a/docs/functions/AEG_IO.loadFile.html b/docs/functions/AEG_IO.loadFile.html index 9912edeb..fa4a88d5 100644 --- a/docs/functions/AEG_IO.loadFile.html +++ b/docs/functions/AEG_IO.loadFile.html @@ -3,4 +3,4 @@

    Parameters

    Returns AEGTree | ProofModeNode[]

    AEGTree representation of fileData if in Draw Mode. Otherwise, a series of ProofModeNodes.

    -
    +
    diff --git a/docs/functions/AEG_IO.loadMode.html b/docs/functions/AEG_IO.loadMode.html index 495e0f40..3d47088a 100644 --- a/docs/functions/AEG_IO.loadMode.html +++ b/docs/functions/AEG_IO.loadMode.html @@ -1,2 +1,2 @@ loadMode | peircemyheart - v1.0.0
    • Calls the appropriate methods to load files and convert them to equivalent AEGTrees.

      -

      Returns Promise<void>

    +

    Returns Promise<void>

    diff --git a/docs/functions/AEG_IO.saveFile.html b/docs/functions/AEG_IO.saveFile.html index 03540c52..a855b181 100644 --- a/docs/functions/AEG_IO.saveFile.html +++ b/docs/functions/AEG_IO.saveFile.html @@ -2,4 +2,4 @@ and containing the incoming save data.

    The save data will either be an AEGTree from Draw Mode or a series of ProofModeNodes from Proof Mode.

    Parameters

    Returns Promise<void>

    +
  • saveData: AEGTree | ProofModeNode[]
  • Returns Promise<void>

    diff --git a/docs/functions/AEG_IO.saveMode.html b/docs/functions/AEG_IO.saveMode.html index e25c5f85..f5e873b7 100644 --- a/docs/functions/AEG_IO.saveMode.html +++ b/docs/functions/AEG_IO.saveMode.html @@ -1,2 +1,2 @@ saveMode | peircemyheart - v1.0.0
    • Calls appropriate methods to save the current AEGTree as a file.

      -

      Returns Promise<void>

    +

    Returns Promise<void>

    diff --git a/docs/functions/DrawTools_AtomTool.atomKeyPress.html b/docs/functions/DrawTools_AtomTool.atomKeyPress.html index 06005fff..a47fdbd7 100644 --- a/docs/functions/DrawTools_AtomTool.atomKeyPress.html +++ b/docs/functions/DrawTools_AtomTool.atomKeyPress.html @@ -1,4 +1,4 @@ atomKeyPress | peircemyheart - v1.0.0
    • Checks to see if the key from the incoming KeyboardEvent is in the Latin alphabet. Then sets currentAtom's identifier to that key if true.

      Parameters

      • event: KeyboardEvent

        Incoming KeyboardEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_AtomTool.atomMouseDown.html b/docs/functions/DrawTools_AtomTool.atomMouseDown.html index d4b25b06..83a8f0b9 100644 --- a/docs/functions/DrawTools_AtomTool.atomMouseDown.html +++ b/docs/functions/DrawTools_AtomTool.atomMouseDown.html @@ -1,4 +1,4 @@ atomMouseDown | peircemyheart - v1.0.0
    • Draws currentAtom on canvas at the coordinates given by the incoming MouseEvent. Then highlights currentAtom according to its position's validity.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_AtomTool.atomMouseMove.html b/docs/functions/DrawTools_AtomTool.atomMouseMove.html index d513b8b8..da5d403e 100644 --- a/docs/functions/DrawTools_AtomTool.atomMouseMove.html +++ b/docs/functions/DrawTools_AtomTool.atomMouseMove.html @@ -1,4 +1,4 @@ atomMouseMove | peircemyheart - v1.0.0
    • Updates currentAtom's coordinates to the coordinates given by the incoming MouseEvent. Then updates highlight colors according to its new position's validity.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_AtomTool.atomMouseOut.html b/docs/functions/DrawTools_AtomTool.atomMouseOut.html index 9e006f1d..5b933733 100644 --- a/docs/functions/DrawTools_AtomTool.atomMouseOut.html +++ b/docs/functions/DrawTools_AtomTool.atomMouseOut.html @@ -1,3 +1,3 @@ atomMouseOut | peircemyheart - v1.0.0
    • Sets wasOut to true. Then redraws the Draw Mode AEGtree.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_AtomTool.atomMouseUp.html b/docs/functions/DrawTools_AtomTool.atomMouseUp.html index f0787736..f56d87ad 100644 --- a/docs/functions/DrawTools_AtomTool.atomMouseUp.html +++ b/docs/functions/DrawTools_AtomTool.atomMouseUp.html @@ -1,4 +1,4 @@ atomMouseUp | peircemyheart - v1.0.0
    • Inserts currentAtom at the coordinates given by the incoming MouseEvent if valid. Then redraws the Draw Mode AEGTree regardless.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseDown.html b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseDown.html index b7984d8e..7c3db4f3 100644 --- a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseDown.html +++ b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseDown.html @@ -2,4 +2,4 @@ Then sets selectedNode to the lowest node containing the coordinates given by the incoming MouseEvent. Then highlights selectedNode the legal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseMove.html b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseMove.html index f60ad958..5b0d328f 100644 --- a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseMove.html +++ b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseMove.html @@ -3,4 +3,4 @@ Then highlights the selection the legal color. Currently MouseMove does not allow for node selection. (Can be changed as per team review.)

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseOut.html b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseOut.html index a72b4a72..32743cf7 100644 --- a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseOut.html +++ b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseOut.html @@ -1,4 +1,4 @@ copyFromDrawMouseOut | peircemyheart - v1.0.0
    • Sets selectedNode to null. Then sets legality to false. Then redraws the Draw Mode AEGTree.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseUp.html b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseUp.html index ed162a96..8883ded0 100644 --- a/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseUp.html +++ b/docs/functions/DrawTools_CopyFromDraw.copyFromDrawMouseUp.html @@ -1,4 +1,4 @@ copyFromDrawMouseUp | peircemyheart - v1.0.0
    • Inserts selectedNode and all its children into treeContext's selectForProof field. Then sets selectedNode to null. Then sets legality to false.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseDown.html b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseDown.html index 8493fd07..0cdda9a2 100644 --- a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseDown.html +++ b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseDown.html @@ -1,4 +1,4 @@ copyMultiMouseDown | peircemyheart - v1.0.0
    • Sets startingPoint according to the coordinates given by the incoming MouseEvent. Then sets currentNode to the lowest node containing startingPoint.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseMove.html b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseMove.html index 4622d631..15bf124b 100644 --- a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseMove.html +++ b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseMove.html @@ -1,4 +1,4 @@ copyMultiMouseMove | peircemyheart - v1.0.0
    • Alters currentNode according to the coordinates given by the incoming MouseEvent. Then highlights the altered currentNode according to its and all its children's positions' validity.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseOut.html b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseOut.html index 93c57a46..99baca67 100644 --- a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseOut.html +++ b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseOut.html @@ -1,3 +1,3 @@ copyMultiMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseUp.html b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseUp.html index 14857901..a53cc495 100644 --- a/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseUp.html +++ b/docs/functions/DrawTools_CopyMultiTool.copyMultiMouseUp.html @@ -3,4 +3,4 @@ Then inserts any children of currentNode if their positions are valid. Otherwise inserts the original currentNode.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopySingleTool.copySingleMouseDown.html b/docs/functions/DrawTools_CopySingleTool.copySingleMouseDown.html index 978b5241..e8ec189b 100644 --- a/docs/functions/DrawTools_CopySingleTool.copySingleMouseDown.html +++ b/docs/functions/DrawTools_CopySingleTool.copySingleMouseDown.html @@ -1,4 +1,4 @@ copySingleMouseDown | peircemyheart - v1.0.0
    • Sets startingPoint according to the coordinates given by the incoming MouseEvent. Then removes the lowest node containing startingPoint.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopySingleTool.copySingleMouseMove.html b/docs/functions/DrawTools_CopySingleTool.copySingleMouseMove.html index 22c989c6..62205d68 100644 --- a/docs/functions/DrawTools_CopySingleTool.copySingleMouseMove.html +++ b/docs/functions/DrawTools_CopySingleTool.copySingleMouseMove.html @@ -1,4 +1,4 @@ copySingleMouseMove | peircemyheart - v1.0.0
    • Alters currentNode according to the coordinates given by the incoming MouseEvent. Then highlights the altered currentNode according to its position's validity.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopySingleTool.copySingleMouseOut.html b/docs/functions/DrawTools_CopySingleTool.copySingleMouseOut.html index 7436b179..f5e01502 100644 --- a/docs/functions/DrawTools_CopySingleTool.copySingleMouseOut.html +++ b/docs/functions/DrawTools_CopySingleTool.copySingleMouseOut.html @@ -1,3 +1,3 @@ copySingleMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/DrawTools_CopySingleTool.copySingleMouseUp.html b/docs/functions/DrawTools_CopySingleTool.copySingleMouseUp.html index ef1d559b..846c0756 100644 --- a/docs/functions/DrawTools_CopySingleTool.copySingleMouseUp.html +++ b/docs/functions/DrawTools_CopySingleTool.copySingleMouseUp.html @@ -2,4 +2,4 @@ Then inserts the altered currentNode if its position is valid. Otherwise inserts the original currentNode.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CutTool.cutMouseDown.html b/docs/functions/DrawTools_CutTool.cutMouseDown.html index 15ee2216..e8362c8b 100644 --- a/docs/functions/DrawTools_CutTool.cutMouseDown.html +++ b/docs/functions/DrawTools_CutTool.cutMouseDown.html @@ -1,3 +1,3 @@ cutMouseDown | peircemyheart - v1.0.0
    • Sets startingPoint according to the coordinates given by the incoming MouseEvent.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CutTool.cutMouseEnter.html b/docs/functions/DrawTools_CutTool.cutMouseEnter.html index c2f8d7a0..5b9c756f 100644 --- a/docs/functions/DrawTools_CutTool.cutMouseEnter.html +++ b/docs/functions/DrawTools_CutTool.cutMouseEnter.html @@ -1,2 +1,2 @@ cutMouseEnter | peircemyheart - v1.0.0
    • Sets the canvas' style attribute to crosshair.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CutTool.cutMouseMove.html b/docs/functions/DrawTools_CutTool.cutMouseMove.html index 2e513687..a8b21fd2 100644 --- a/docs/functions/DrawTools_CutTool.cutMouseMove.html +++ b/docs/functions/DrawTools_CutTool.cutMouseMove.html @@ -4,4 +4,4 @@ Then redraws the canvas and the CutNode regardless of validity. Then redraws the CutNode guidelines if that checkbox is active.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CutTool.cutMouseOut.html b/docs/functions/DrawTools_CutTool.cutMouseOut.html index 9dfbc4d9..4919769f 100644 --- a/docs/functions/DrawTools_CutTool.cutMouseOut.html +++ b/docs/functions/DrawTools_CutTool.cutMouseOut.html @@ -1,3 +1,3 @@ cutMouseOut | peircemyheart - v1.0.0
    • Sets wasOut to true. Then redraws the Draw Mode AEGTree.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_CutTool.cutMouseUp.html b/docs/functions/DrawTools_CutTool.cutMouseUp.html index 7daec94f..003ab503 100644 --- a/docs/functions/DrawTools_CutTool.cutMouseUp.html +++ b/docs/functions/DrawTools_CutTool.cutMouseUp.html @@ -2,4 +2,4 @@ This CutNode's Ellipse uses the coordinates given by the incoming MouseEvent into its calculation. Then redraws the canvas regardless of this new CutNode's insertion.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseDown.html b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseDown.html index fda6c05d..f93eb2c7 100644 --- a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseDown.html +++ b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseDown.html @@ -3,4 +3,4 @@ Then currentNode and all its children are removed from the Draw Mode AEGTree and are highlighted the illegal color. Then removes all the children of currentNode if currentNode is The Sheet of Assertion.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseMove.html b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseMove.html index 3cf345de..c75f29fc 100644 --- a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseMove.html +++ b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseMove.html @@ -2,4 +2,4 @@ Then currentNode is set to the lowest node containing the coordinates given by the incoming MouseEvent. Then that new currentNode and all its children are removed and highlighted as the illegal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseOut.html b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseOut.html index 847577fc..a1a821df 100644 --- a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseOut.html +++ b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseOut.html @@ -2,4 +2,4 @@ Then sets currentNode to null. Then sets legality to false. Then redraws the Draw Mode AEGTree.

    -

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseUp.html b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseUp.html index 2d38d973..778ce092 100644 --- a/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseUp.html +++ b/docs/functions/DrawTools_DeleteMultiTool.deleteMultiMouseUp.html @@ -3,4 +3,4 @@ Then the currentNode is set to null. Then legality is set to false.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseDown.html b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseDown.html index 258e3c9c..4183dd4a 100644 --- a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseDown.html +++ b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseDown.html @@ -2,4 +2,4 @@ Then the lowest node containing startingPoint is stored as currentNode if it is not The Sheet of Assertion or null. Then currentNode is removed from the Draw Mode AEGTree, its children are readded, and it is highlighted as the illegal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseMove.html b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseMove.html index 4371a596..00ea103c 100644 --- a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseMove.html +++ b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseMove.html @@ -2,4 +2,4 @@ Then currentNode is to the lowest node containing the coordinates given by the incoming MouseEvent. Then that new currentNode is removed, its children are inserted, and is highlighted as the illegal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseOut.html b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseOut.html index 4db3603e..368e9a91 100644 --- a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseOut.html +++ b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseOut.html @@ -1,2 +1,2 @@ deleteSingleMouseOut | peircemyheart - v1.0.0
    • Reinserts the original currentNode, sets currentNode to null, sets legality to false and redraws the Draw Mode AEGTree.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseUp.html b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseUp.html index 53f3838c..7ac6610f 100644 --- a/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseUp.html +++ b/docs/functions/DrawTools_DeleteSingleTool.deleteSingleMouseUp.html @@ -2,4 +2,4 @@ Then currentNode is deleted and all its children are readded to the Draw Mode AEGTree. Then the currentNode is set to null and legality is set to false.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawClearTool.drawClearMouseDown.html b/docs/functions/DrawTools_DrawClearTool.drawClearMouseDown.html index c4e54b61..4cf1d7d3 100644 --- a/docs/functions/DrawTools_DrawClearTool.drawClearMouseDown.html +++ b/docs/functions/DrawTools_DrawClearTool.drawClearMouseDown.html @@ -1,2 +1,2 @@ drawClearMouseDown | peircemyheart - v1.0.0
    • Clears the canvas and highlights all nodes on it as the illegal color.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawClearTool.drawClearMouseOut.html b/docs/functions/DrawTools_DrawClearTool.drawClearMouseOut.html index 1cf72cd8..d50f50f6 100644 --- a/docs/functions/DrawTools_DrawClearTool.drawClearMouseOut.html +++ b/docs/functions/DrawTools_DrawClearTool.drawClearMouseOut.html @@ -1,2 +1,2 @@ drawClearMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawClearTool.drawClearMouseUp.html b/docs/functions/DrawTools_DrawClearTool.drawClearMouseUp.html index 7fe86127..1fc4c48e 100644 --- a/docs/functions/DrawTools_DrawClearTool.drawClearMouseUp.html +++ b/docs/functions/DrawTools_DrawClearTool.drawClearMouseUp.html @@ -1,2 +1,2 @@ drawClearMouseUp | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseDown.html b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseDown.html index ae1a505b..c5da9992 100644 --- a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseDown.html +++ b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseDown.html @@ -5,4 +5,4 @@ Then redraws the Draw Mode AEGTree. Then highlights currentNode the legal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseMove.html b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseMove.html index bb233737..4dc702a6 100644 --- a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseMove.html +++ b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseMove.html @@ -1,4 +1,4 @@ drawMoveMultiMouseMove | peircemyheart - v1.0.0
    • Draws an altered currentNode according to the coordinates given by the incoming MouseEvent. Then highlights currentNode according to the legality of it and its children's positions' validity.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseOut.html b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseOut.html index df91518a..8209c15e 100644 --- a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseOut.html +++ b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseOut.html @@ -1,4 +1,4 @@ drawMoveMultiMouseOut | peircemyheart - v1.0.0
    • Reinserts the original currentNode and all its children. Then sets legality to false. Then redraws the canvas.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseUp.html b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseUp.html index e8f4a4da..3e8b6868 100644 --- a/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseUp.html +++ b/docs/functions/DrawTools_DrawMoveMultiTool.drawMoveMultiMouseUp.html @@ -4,4 +4,4 @@ Then sets legality to false. Then redraws the Draw Mode AEGTree.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseDown.html b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseDown.html index 12e993ca..46079948 100644 --- a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseDown.html +++ b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseDown.html @@ -3,4 +3,4 @@ Then reinserts its children. Then highlights currentNode the legal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseMove.html b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseMove.html index 21efed0d..5cb4b8c4 100644 --- a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseMove.html +++ b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseMove.html @@ -2,4 +2,4 @@ Then redraws the Draw Mode AEGTree. Then highlights currentNode according to the legality of its position.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseOut.html b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseOut.html index d597a879..11fd3c5b 100644 --- a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseOut.html +++ b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseOut.html @@ -1,4 +1,4 @@ drawMoveSingleMouseOut | peircemyheart - v1.0.0
    • Reinserts the original currentNode if legal. Then sets legality to false. Then redraws the canvas.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseUp.html b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseUp.html index 2c8bde4c..fff96840 100644 --- a/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseUp.html +++ b/docs/functions/DrawTools_DrawMoveSingleTool.drawMoveSingleMouseUp.html @@ -2,4 +2,4 @@ Then inserts currentNode if its altered position is valid. Otherwise reinserts the unaltered currentNode.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseDown.html b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseDown.html index edabb2e4..cf214166 100644 --- a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseDown.html +++ b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseDown.html @@ -4,4 +4,4 @@ Then if currentNode is a CutNode, it is removed from the Draw Mode AEGTree and its children are inserted. Then direction is calculated and set.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseMove.html b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseMove.html index 3b5e90b2..44321b3c 100644 --- a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseMove.html +++ b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseMove.html @@ -4,4 +4,4 @@ Then highlights currentNode according to its position's validity. Highlight Color is legal only if currentNode can be inserted and is greater than the minimum radii values.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseOut.html b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseOut.html index 60ee15b4..26ecf9bc 100644 --- a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseOut.html +++ b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseOut.html @@ -1,4 +1,4 @@ drawResizeMouseOut | peircemyheart - v1.0.0
    • Reinserts the original currentNode if its legal. Then marks legality as false. Then redraws the Draw Mode AEGTree.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseUp.html b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseUp.html index 53e1f4a7..dde008e3 100644 --- a/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseUp.html +++ b/docs/functions/DrawTools_DrawResizeTool.drawResizeMouseUp.html @@ -5,4 +5,4 @@ Then the Draw Mode AEGTree is redrawn. Then legality is set to false.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DeiterationTool.deiterationMouseDown.html b/docs/functions/ProofTools_DeiterationTool.deiterationMouseDown.html index f311f6db..bed847de 100644 --- a/docs/functions/ProofTools_DeiterationTool.deiterationMouseDown.html +++ b/docs/functions/ProofTools_DeiterationTool.deiterationMouseDown.html @@ -1,4 +1,4 @@ deiterationMouseDown | peircemyheart - v1.0.0
    • Sets currentPoint according to the coordinates given by the incoming MouseEvent. Then sets currentNode, determines legality and highlights accordingly.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DeiterationTool.deiterationMouseMove.html b/docs/functions/ProofTools_DeiterationTool.deiterationMouseMove.html index 30ddb600..e418b865 100644 --- a/docs/functions/ProofTools_DeiterationTool.deiterationMouseMove.html +++ b/docs/functions/ProofTools_DeiterationTool.deiterationMouseMove.html @@ -2,4 +2,4 @@

    Then follows the same control flow as deiterationMouseDown.

    Parameters

    Returns void

    deiterationMouseDown

    -
    +
    diff --git a/docs/functions/ProofTools_DeiterationTool.deiterationMouseOut.html b/docs/functions/ProofTools_DeiterationTool.deiterationMouseOut.html index cecc7123..0ea09ea7 100644 --- a/docs/functions/ProofTools_DeiterationTool.deiterationMouseOut.html +++ b/docs/functions/ProofTools_DeiterationTool.deiterationMouseOut.html @@ -1,2 +1,2 @@ deiterationMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_DeiterationTool.deiterationMouseUp.html b/docs/functions/ProofTools_DeiterationTool.deiterationMouseUp.html index f0b17a62..77cba6a0 100644 --- a/docs/functions/ProofTools_DeiterationTool.deiterationMouseUp.html +++ b/docs/functions/ProofTools_DeiterationTool.deiterationMouseUp.html @@ -2,4 +2,4 @@ Sets currentPoint to the coordinates given by the incoming MouseEvent, and deiterates the node at currentPoint if able.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseDown.html b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseDown.html index 594ad7f3..34c35fcb 100644 --- a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseDown.html +++ b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseDown.html @@ -2,4 +2,4 @@ Then sets currentNode to the lowest node containing currentPoint. Then determines legality and highlights the effected nodes as the illegal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseMove.html b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseMove.html index c35a48b4..276dcc0e 100644 --- a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseMove.html +++ b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseMove.html @@ -2,4 +2,4 @@ Then sets currentNode according to currentPoint, determines legality and highlights currentNode as the illegal color.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseOut.html b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseOut.html index 5da05b35..3bc93d28 100644 --- a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseOut.html +++ b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseOut.html @@ -1,2 +1,2 @@ doubleCutDeletionMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseUp.html b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseUp.html index 36b3e57d..4b016ca7 100644 --- a/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseUp.html +++ b/docs/functions/ProofTools_DoubleCutDeletionTool.doubleCutDeletionMouseUp.html @@ -3,4 +3,4 @@ Then, if both CutNodes can legally be removed, removes both and pushes the queued proof step.

    Then redraws the proof.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseDown.html b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseDown.html index 22d033e7..8ed8e943 100644 --- a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseDown.html +++ b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseDown.html @@ -1,3 +1,3 @@ doubleCutInsertionMouseDown | peircemyheart - v1.0.0
    • Sets startingPoint according to the coordinates given by the incoming MouseEvent.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseEnter.html b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseEnter.html index cfc5655d..11d2c5c3 100644 --- a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseEnter.html +++ b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseEnter.html @@ -1,2 +1,2 @@ doubleCutInsertionMouseEnter | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseMove.html b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseMove.html index 819ac012..7ea32bf2 100644 --- a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseMove.html +++ b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseMove.html @@ -5,4 +5,4 @@ Highlights both CutNodes as the legal or illegal color.

    Draws the Ellipses' bounding boxes if that is enabled.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseOut.html b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseOut.html index 79ad07ca..bb47fe00 100644 --- a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseOut.html +++ b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseOut.html @@ -1,2 +1,2 @@ doubleCutInsertionMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseUp.html b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseUp.html index 7c50df21..ae15361f 100644 --- a/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseUp.html +++ b/docs/functions/ProofTools_DoubleCutInsertionTool.doubleCutInsertionMouseUp.html @@ -4,4 +4,4 @@

    Then redraws the proof.

    Parameters

    Returns void

    doubleCutInsertionMouseMove

    -
    +
    diff --git a/docs/functions/ProofTools_ErasureTool.erasureMouseDown.html b/docs/functions/ProofTools_ErasureTool.erasureMouseDown.html index ae8940ae..d22ccaa3 100644 --- a/docs/functions/ProofTools_ErasureTool.erasureMouseDown.html +++ b/docs/functions/ProofTools_ErasureTool.erasureMouseDown.html @@ -2,4 +2,4 @@ Then sets currentNode to the lowest node containing currentPoint. Then determines legality and highlights accordingly.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ErasureTool.erasureMouseMove.html b/docs/functions/ProofTools_ErasureTool.erasureMouseMove.html index ad0bd78f..6da4da94 100644 --- a/docs/functions/ProofTools_ErasureTool.erasureMouseMove.html +++ b/docs/functions/ProofTools_ErasureTool.erasureMouseMove.html @@ -1,4 +1,4 @@ erasureMouseMove | peircemyheart - v1.0.0
    • Follows the same control flow as erasureMouseDown.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

      Returns void

      erasureMouseDown

      -
    +
    diff --git a/docs/functions/ProofTools_ErasureTool.erasureMouseOut.html b/docs/functions/ProofTools_ErasureTool.erasureMouseOut.html index 677f7218..36cc83b2 100644 --- a/docs/functions/ProofTools_ErasureTool.erasureMouseOut.html +++ b/docs/functions/ProofTools_ErasureTool.erasureMouseOut.html @@ -1,2 +1,2 @@ erasureMouseOut | peircemyheart - v1.0.0
    • Reinserts currentNode into tempTree if necessary and sets fields to defaults.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ErasureTool.erasureMouseUp.html b/docs/functions/ProofTools_ErasureTool.erasureMouseUp.html index 2c5eb90f..f78f4aea 100644 --- a/docs/functions/ProofTools_ErasureTool.erasureMouseUp.html +++ b/docs/functions/ProofTools_ErasureTool.erasureMouseUp.html @@ -3,4 +3,4 @@ Removes the lowest node containing the coordinates given by the incoming MouseEvent, and Adds the queued Erasure step.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_InsertionTool.insertionMouseDown.html b/docs/functions/ProofTools_InsertionTool.insertionMouseDown.html index ad37f5d8..2dd7835e 100644 --- a/docs/functions/ProofTools_InsertionTool.insertionMouseDown.html +++ b/docs/functions/ProofTools_InsertionTool.insertionMouseDown.html @@ -5,4 +5,4 @@ the cut level is odd, and currentNode and none of its children overlap nodes in the existing proof tree.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_InsertionTool.insertionMouseMove.html b/docs/functions/ProofTools_InsertionTool.insertionMouseMove.html index a705a383..9e9bfce9 100644 --- a/docs/functions/ProofTools_InsertionTool.insertionMouseMove.html +++ b/docs/functions/ProofTools_InsertionTool.insertionMouseMove.html @@ -3,4 +3,4 @@ Then follows the same control flow as insertionMouseDown.

    Parameters

    Returns void

    insertionMouseDown

    -
    +
    diff --git a/docs/functions/ProofTools_InsertionTool.insertionMouseOut.html b/docs/functions/ProofTools_InsertionTool.insertionMouseOut.html index 3a319db1..28ff6328 100644 --- a/docs/functions/ProofTools_InsertionTool.insertionMouseOut.html +++ b/docs/functions/ProofTools_InsertionTool.insertionMouseOut.html @@ -1,2 +1,2 @@ insertionMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_InsertionTool.insertionMouseUp.html b/docs/functions/ProofTools_InsertionTool.insertionMouseUp.html index a9ffea06..b17d00cc 100644 --- a/docs/functions/ProofTools_InsertionTool.insertionMouseUp.html +++ b/docs/functions/ProofTools_InsertionTool.insertionMouseUp.html @@ -2,4 +2,4 @@ by the incoming MouseEvent. Then adds an Insertion step to the proof history.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_IterationTool.iterationMouseDown.html b/docs/functions/ProofTools_IterationTool.iterationMouseDown.html index 75370a05..52b42700 100644 --- a/docs/functions/ProofTools_IterationTool.iterationMouseDown.html +++ b/docs/functions/ProofTools_IterationTool.iterationMouseDown.html @@ -1,4 +1,4 @@ iterationMouseDown | peircemyheart - v1.0.0
    • Sets startingPoint according to the incoming MouseEvent. Then sets all fields above accordingly.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_IterationTool.iterationMouseMove.html b/docs/functions/ProofTools_IterationTool.iterationMouseMove.html index d1df22db..4d1ad133 100644 --- a/docs/functions/ProofTools_IterationTool.iterationMouseMove.html +++ b/docs/functions/ProofTools_IterationTool.iterationMouseMove.html @@ -4,4 +4,4 @@ Highlights currentNode and any of its children as the legal or illegal color based on their positions' validity.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_IterationTool.iterationMouseOut.html b/docs/functions/ProofTools_IterationTool.iterationMouseOut.html index c50ca713..ef2cde9d 100644 --- a/docs/functions/ProofTools_IterationTool.iterationMouseOut.html +++ b/docs/functions/ProofTools_IterationTool.iterationMouseOut.html @@ -1,2 +1,2 @@ iterationMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_IterationTool.iterationMouseUp.html b/docs/functions/ProofTools_IterationTool.iterationMouseUp.html index 1bf45f42..a22d0b34 100644 --- a/docs/functions/ProofTools_IterationTool.iterationMouseUp.html +++ b/docs/functions/ProofTools_IterationTool.iterationMouseUp.html @@ -3,4 +3,4 @@ Iterates the altered currentNode to a deeper level in the Proof Mode AEGTree and redraws the proof.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseDown.html b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseDown.html index 699114f9..b91649c1 100644 --- a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseDown.html +++ b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseDown.html @@ -1,2 +1,2 @@ pasteInProofMouseDown | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseMove.html b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseMove.html index 02f1e8d9..98e0738b 100644 --- a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseMove.html +++ b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseMove.html @@ -1,2 +1,2 @@ pasteInProofMouseMove | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseOut.html b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseOut.html index 93ab0e67..27c44904 100644 --- a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseOut.html +++ b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseOut.html @@ -1,2 +1,2 @@ pasteInProofMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseUp.html b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseUp.html index efe19e3d..1f4e6ec4 100644 --- a/docs/functions/ProofTools_PasteInProof.pasteInProofMouseUp.html +++ b/docs/functions/ProofTools_PasteInProof.pasteInProofMouseUp.html @@ -1,2 +1,2 @@ pasteInProofMouseUp | peircemyheart - v1.0.0
    • Pushes a "Pasted" step to the proof history and redraws the proof.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofClearTool.proofClearMouseDown.html b/docs/functions/ProofTools_ProofClearTool.proofClearMouseDown.html index ae6d06c0..012fe4d9 100644 --- a/docs/functions/ProofTools_ProofClearTool.proofClearMouseDown.html +++ b/docs/functions/ProofTools_ProofClearTool.proofClearMouseDown.html @@ -1,2 +1,2 @@ proofClearMouseDown | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofClearTool.proofClearMouseOut.html b/docs/functions/ProofTools_ProofClearTool.proofClearMouseOut.html index d49fe4b8..c613bb36 100644 --- a/docs/functions/ProofTools_ProofClearTool.proofClearMouseOut.html +++ b/docs/functions/ProofTools_ProofClearTool.proofClearMouseOut.html @@ -1,2 +1,2 @@ proofClearMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofClearTool.proofClearMouseUp.html b/docs/functions/ProofTools_ProofClearTool.proofClearMouseUp.html index 600250a7..125619bf 100644 --- a/docs/functions/ProofTools_ProofClearTool.proofClearMouseUp.html +++ b/docs/functions/ProofTools_ProofClearTool.proofClearMouseUp.html @@ -1,2 +1,2 @@ proofClearMouseUp | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseDown.html b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseDown.html index d483b0e4..f0d66c84 100644 --- a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseDown.html +++ b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseDown.html @@ -3,4 +3,4 @@

    Then, if legal, removes currentNode and highlights it according to its and its children's positions' validity.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseMove.html b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseMove.html index 7ed2ba91..75eddfbe 100644 --- a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseMove.html +++ b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseMove.html @@ -3,4 +3,4 @@

    Then, if legal, removes the altered currentNode and highlights it according to its and its children's positions' validity.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseOut.html b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseOut.html index f4c7928b..41b972e8 100644 --- a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseOut.html +++ b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseOut.html @@ -1,2 +1,2 @@ proofMoveMultiMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseUp.html b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseUp.html index 38441ffb..8c478030 100644 --- a/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseUp.html +++ b/docs/functions/ProofTools_ProofMoveMultiTool.proofMoveMultiMouseUp.html @@ -3,4 +3,4 @@ by the incoming MouseEvent.

    Then, if legal, inserts the altered currentNode and its children.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseDown.html b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseDown.html index 391b60b7..e187e3e6 100644 --- a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseDown.html +++ b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseDown.html @@ -3,4 +3,4 @@ Then, if legal, removes currentNode and highlights it according to its position's validity.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseMove.html b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseMove.html index 06aa5b5a..a28bc6b3 100644 --- a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseMove.html +++ b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseMove.html @@ -1,4 +1,4 @@ proofMoveSingleMouseMove | peircemyheart - v1.0.0
    • Alters currentNode according to the coordinates given by the incoming MouseEvent. Then highlights currentNode as either the legal or illegal color depending on move legality.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseOut.html b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseOut.html index a453a254..4b938b48 100644 --- a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseOut.html +++ b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseOut.html @@ -1,2 +1,2 @@ proofMoveSingleMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseUp.html b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseUp.html index fea88313..03bd179c 100644 --- a/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseUp.html +++ b/docs/functions/ProofTools_ProofMoveSingleTool.proofMoveSingleMouseUp.html @@ -3,4 +3,4 @@ If this Single Move is valid, then the moved node and queued Single Move step are added to the proof.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseDown.html b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseDown.html index cfff754e..e3dc774b 100644 --- a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseDown.html +++ b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseDown.html @@ -5,4 +5,4 @@ Then inserts currentNode's children. Then determines direction.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseMove.html b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseMove.html index 0392263e..1fc4b101 100644 --- a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseMove.html +++ b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseMove.html @@ -1,4 +1,4 @@ proofResizeMouseMove | peircemyheart - v1.0.0
    • Resizes currentNode according to the coordinates given by the incoming MouseEvent and direction. Then redraws the resize as the legal or illegal color depending on its position's validity.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseOut.html b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseOut.html index edd4b0f6..921389ea 100644 --- a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseOut.html +++ b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseOut.html @@ -1,2 +1,2 @@ proofResizeMouseOut | peircemyheart - v1.0.0
    • Reinserts currentNode into currentProofTree if necessary and sets fields to defaults.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseUp.html b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseUp.html index d0c6b9b8..ac79264a 100644 --- a/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseUp.html +++ b/docs/functions/ProofTools_ProofResizeTool.proofResizeMouseUp.html @@ -1,4 +1,4 @@ proofResizeMouseUp | peircemyheart - v1.0.0
    • Resizes currentNode according to the coordinates given by the incoming MouseEvent and direction. If this resize's position is valid, then it is inserted and added as a proof step.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/ProofTools_ProofToolUtils.getCurrentProofTree.html b/docs/functions/ProofTools_ProofToolUtils.getCurrentProofTree.html index 654bb8b1..ed4aa5af 100644 --- a/docs/functions/ProofTools_ProofToolUtils.getCurrentProofTree.html +++ b/docs/functions/ProofTools_ProofToolUtils.getCurrentProofTree.html @@ -1,4 +1,4 @@ getCurrentProofTree | peircemyheart - v1.0.0
    • Copies and returns the AEGTree of the current proof step. Returns an empty AEGTree if no steps were taken.

      Returns AEGTree

      AEGTree of the current proof step.

      -
    +
    diff --git a/docs/functions/ProofTools_ProofToolUtils.isMoveLegal.html b/docs/functions/ProofTools_ProofToolUtils.isMoveLegal.html index 8c4d3ff9..6e7ab1f9 100644 --- a/docs/functions/ProofTools_ProofToolUtils.isMoveLegal.html +++ b/docs/functions/ProofTools_ProofToolUtils.isMoveLegal.html @@ -2,4 +2,4 @@ the proof's copy of the incoming AEGTree.

    Parameters

    Returns boolean

    True if currentNode can be inserted into tree and the proof's copy of tree.

    -
    +
    diff --git a/docs/functions/ProofTools_ProofToolUtils.proofCanInsert.html b/docs/functions/ProofTools_ProofToolUtils.proofCanInsert.html index f2ac6cce..1acaedec 100644 --- a/docs/functions/ProofTools_ProofToolUtils.proofCanInsert.html +++ b/docs/functions/ProofTools_ProofToolUtils.proofCanInsert.html @@ -2,4 +2,4 @@

    Parameters

    Returns boolean

    True if tree and the AEGTree of the current proof step are equal.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_DragTool.dragMouseDown.html b/docs/functions/SharedToolUtils_DragTool.dragMouseDown.html index 7d446a3b..622d9a11 100644 --- a/docs/functions/SharedToolUtils_DragTool.dragMouseDown.html +++ b/docs/functions/SharedToolUtils_DragTool.dragMouseDown.html @@ -1,3 +1,3 @@ dragMouseDown | peircemyheart - v1.0.0
    • Sets originPoint to the coordinates of the incoming MouseEvent.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DragTool.dragMouseEnter.html b/docs/functions/SharedToolUtils_DragTool.dragMouseEnter.html index 4f95f4be..8027c844 100644 --- a/docs/functions/SharedToolUtils_DragTool.dragMouseEnter.html +++ b/docs/functions/SharedToolUtils_DragTool.dragMouseEnter.html @@ -1,2 +1,2 @@ dragMouseEnter | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DragTool.dragMouseMove.html b/docs/functions/SharedToolUtils_DragTool.dragMouseMove.html index d5a70c99..47baa4c9 100644 --- a/docs/functions/SharedToolUtils_DragTool.dragMouseMove.html +++ b/docs/functions/SharedToolUtils_DragTool.dragMouseMove.html @@ -1,3 +1,3 @@ dragMouseMove | peircemyheart - v1.0.0
    • Compares originPoint with the coordinates of the incoming MouseEvent and redraws the tree.

      Parameters

      • event: MouseEvent

        Incoming MouseEvent.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DragTool.dragMouseOut.html b/docs/functions/SharedToolUtils_DragTool.dragMouseOut.html index 437012e1..9cd94b2c 100644 --- a/docs/functions/SharedToolUtils_DragTool.dragMouseOut.html +++ b/docs/functions/SharedToolUtils_DragTool.dragMouseOut.html @@ -1,2 +1,2 @@ dragMouseOut | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DragTool.dragMouseUp.html b/docs/functions/SharedToolUtils_DragTool.dragMouseUp.html index c211afc6..a6c1e406 100644 --- a/docs/functions/SharedToolUtils_DragTool.dragMouseUp.html +++ b/docs/functions/SharedToolUtils_DragTool.dragMouseUp.html @@ -1,2 +1,2 @@ dragMouseUp | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.changeCursorStyle.html b/docs/functions/SharedToolUtils_DrawUtils.changeCursorStyle.html index 02158e8d..053ef0ca 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.changeCursorStyle.html +++ b/docs/functions/SharedToolUtils_DrawUtils.changeCursorStyle.html @@ -1,3 +1,3 @@ changeCursorStyle | peircemyheart - v1.0.0
    • Sets canvas' HTML style tag to the incoming string.

      Parameters

      • newMouseStyle: string

        Incoming string.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.cleanCanvas.html b/docs/functions/SharedToolUtils_DrawUtils.cleanCanvas.html index 66221252..08656fe6 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.cleanCanvas.html +++ b/docs/functions/SharedToolUtils_DrawUtils.cleanCanvas.html @@ -1,2 +1,2 @@ cleanCanvas | peircemyheart - v1.0.0
    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.determineAndChangeCursorStyle.html b/docs/functions/SharedToolUtils_DrawUtils.determineAndChangeCursorStyle.html index d52bce63..c8cdfb5e 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.determineAndChangeCursorStyle.html +++ b/docs/functions/SharedToolUtils_DrawUtils.determineAndChangeCursorStyle.html @@ -5,4 +5,4 @@

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.determineDirection.html b/docs/functions/SharedToolUtils_DrawUtils.determineDirection.html index 93924eb8..072c200b 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.determineDirection.html +++ b/docs/functions/SharedToolUtils_DrawUtils.determineDirection.html @@ -2,4 +2,4 @@

    Parameters

    Returns Point

    Direction for currentNode to move towards.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_DrawUtils.drawAtom.html b/docs/functions/SharedToolUtils_DrawUtils.drawAtom.html index 85a0e511..6f53a832 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.drawAtom.html +++ b/docs/functions/SharedToolUtils_DrawUtils.drawAtom.html @@ -4,4 +4,4 @@

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.drawCut.html b/docs/functions/SharedToolUtils_DrawUtils.drawCut.html index 982d4694..173e3bfd 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.drawCut.html +++ b/docs/functions/SharedToolUtils_DrawUtils.drawCut.html @@ -1,4 +1,4 @@ drawCut | peircemyheart - v1.0.0
    • Draws the incoming CutNode on canvas as the incoming color string.

      Parameters

      • thisCut: CutNode

        Incoming CutNode.

      • color: string

        Incoming color string.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.drawGuidelines.html b/docs/functions/SharedToolUtils_DrawUtils.drawGuidelines.html index 45dfb8a3..a68f11bf 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.drawGuidelines.html +++ b/docs/functions/SharedToolUtils_DrawUtils.drawGuidelines.html @@ -4,4 +4,4 @@

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.getImageWidthAndHeightFromChar.html b/docs/functions/SharedToolUtils_DrawUtils.getImageWidthAndHeightFromChar.html index 3bba2754..a94cac07 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.getImageWidthAndHeightFromChar.html +++ b/docs/functions/SharedToolUtils_DrawUtils.getImageWidthAndHeightFromChar.html @@ -3,4 +3,4 @@ we can use lightIdentifierImagesMap to measure them all equally.

    Parameters

    Returns Point

    Actual width and height of the image corresponding to incomingChar.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_DrawUtils.highlightNode.html b/docs/functions/SharedToolUtils_DrawUtils.highlightNode.html index ba0212a9..1aaec3ad 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.highlightNode.html +++ b/docs/functions/SharedToolUtils_DrawUtils.highlightNode.html @@ -1,4 +1,4 @@ highlightNode | peircemyheart - v1.0.0
    • Highlights all the children of the incoming child node as the incoming color string.

      Parameters

      • child: AtomNode | CutNode

        Incoming child node.

      • color: string

        Incoming color string.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.loadIdentifierImagesMap.html b/docs/functions/SharedToolUtils_DrawUtils.loadIdentifierImagesMap.html index e2253433..91e42410 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.loadIdentifierImagesMap.html +++ b/docs/functions/SharedToolUtils_DrawUtils.loadIdentifierImagesMap.html @@ -1,2 +1,2 @@ loadIdentifierImagesMap | peircemyheart - v1.0.0
    • Loads each uppercase and lowercase identifier image into an array.

      -

      Returns Promise<void>

    +

    Returns Promise<void>

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.redrawAtom.html b/docs/functions/SharedToolUtils_DrawUtils.redrawAtom.html index 341aa0f2..09bd2af7 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.redrawAtom.html +++ b/docs/functions/SharedToolUtils_DrawUtils.redrawAtom.html @@ -1,3 +1,3 @@ redrawAtom | peircemyheart - v1.0.0
    • Redraws the incoming AtomNode. Also redraws the incoming AtomNode's bounding box.

      Parameters

      • incomingNode: AtomNode

        Incoming AtomNode.

        -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.redrawProof.html b/docs/functions/SharedToolUtils_DrawUtils.redrawProof.html index 1d1245cc..523fa6c1 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.redrawProof.html +++ b/docs/functions/SharedToolUtils_DrawUtils.redrawProof.html @@ -1,3 +1,3 @@ redrawProof | peircemyheart - v1.0.0
    • Redraws the current proof AEGTree after clearing the canvas. Also updates the proof's tree string.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_DrawUtils.redrawTree.html b/docs/functions/SharedToolUtils_DrawUtils.redrawTree.html index ce2cad5c..5f122d8e 100644 --- a/docs/functions/SharedToolUtils_DrawUtils.redrawTree.html +++ b/docs/functions/SharedToolUtils_DrawUtils.redrawTree.html @@ -2,4 +2,4 @@ Also, updates cutDisplay and the window's string forms of the incoming AEGTree.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.alterAtom.html b/docs/functions/SharedToolUtils_EditModeUtils.alterAtom.html index 20aeb89f..49c5ecef 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.alterAtom.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.alterAtom.html @@ -3,4 +3,4 @@

    Parameters

    Returns AtomNode

    Altered version of originalAtom according to difference.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.alterCut.html b/docs/functions/SharedToolUtils_EditModeUtils.alterCut.html index 1e3ff64f..e2c26d2b 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.alterCut.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.alterCut.html @@ -4,4 +4,4 @@
  • difference: Point

    Incoming Point.

  • Returns CutNode

    Altered version of originalCut according to difference.

    Error If originalCut is The Sheet of Assertion.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.alterCutChildren.html b/docs/functions/SharedToolUtils_EditModeUtils.alterCutChildren.html index c42cb4ed..4787a846 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.alterCutChildren.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.alterCutChildren.html @@ -3,4 +3,4 @@

    Parameters

    Returns CutNode

    originalCut with it and its children altered by difference.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.alterNode.html b/docs/functions/SharedToolUtils_EditModeUtils.alterNode.html index 654d4dc4..8493ed25 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.alterNode.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.alterNode.html @@ -3,4 +3,4 @@

    Parameters

    Returns AtomNode | CutNode

    Altered version of node according to difference.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.createEllipse.html b/docs/functions/SharedToolUtils_EditModeUtils.createEllipse.html index fca3a160..341598bd 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.createEllipse.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.createEllipse.html @@ -2,4 +2,4 @@ The original mouse placement and the current mouse placement are these Points.

    Parameters

    Returns Ellipse

    +

    Returns Ellipse

    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.drawAltered.html b/docs/functions/SharedToolUtils_EditModeUtils.drawAltered.html index e997630f..594252d8 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.drawAltered.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.drawAltered.html @@ -3,4 +3,4 @@

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.ellipseLargeEnough.html b/docs/functions/SharedToolUtils_EditModeUtils.ellipseLargeEnough.html index cdf99d5e..fc3320b0 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.ellipseLargeEnough.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.ellipseLargeEnough.html @@ -4,4 +4,4 @@ Also, tiny CutNodes do not serve any purpose due to their inability to contain AtomNodes and CutNodes.

    Parameters

    Returns boolean

    True if ellipse is large enough to be legal.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.insertChildren.html b/docs/functions/SharedToolUtils_EditModeUtils.insertChildren.html index 7c800c68..07d896a6 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.insertChildren.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.insertChildren.html @@ -4,4 +4,4 @@

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.reInsertNode.html b/docs/functions/SharedToolUtils_EditModeUtils.reInsertNode.html index 60cf85e1..b0d750d2 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.reInsertNode.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.reInsertNode.html @@ -2,4 +2,4 @@ Redraws that AEGTree afterward.

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.readdChildren.html b/docs/functions/SharedToolUtils_EditModeUtils.readdChildren.html index d0eab814..aaabaa83 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.readdChildren.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.readdChildren.html @@ -3,4 +3,4 @@ "The cut node loses custody of its children so that those can still be redrawn."

    Parameters

    Returns void

    +

    Returns void

    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.resizeCut.html b/docs/functions/SharedToolUtils_EditModeUtils.resizeCut.html index 0a1fc9b6..203ea4e5 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.resizeCut.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.resizeCut.html @@ -3,4 +3,4 @@
  • difference: Point

    One incoming Point.

  • direction: Point

    Other incoming Point.

  • Returns CutNode

    originalCut with radii expanded by difference towards direction.

    -
    +
    diff --git a/docs/functions/SharedToolUtils_EditModeUtils.validateChildren.html b/docs/functions/SharedToolUtils_EditModeUtils.validateChildren.html index 0ac8fa96..9552aa00 100644 --- a/docs/functions/SharedToolUtils_EditModeUtils.validateChildren.html +++ b/docs/functions/SharedToolUtils_EditModeUtils.validateChildren.html @@ -3,4 +3,4 @@

    Parameters

    Returns boolean

    True f all nodes are able to be inserted after being offset by difference.

    -
    +
    diff --git a/docs/functions/Themes.cssVar.html b/docs/functions/Themes.cssVar.html index 9c942f94..7cb74208 100644 --- a/docs/functions/Themes.cssVar.html +++ b/docs/functions/Themes.cssVar.html @@ -1,4 +1,4 @@ cssVar | peircemyheart - v1.0.0
    • Computes the value of an incoming variable from a CSS Style Sheet.

      Parameters

      • varName: string

        Variable from a CSS Style Sheet.

      Returns string

      Property value of varName in string form.

      -
    +
    diff --git a/docs/functions/Themes.illegalColor.html b/docs/functions/Themes.illegalColor.html index 5d3571a2..12c0827a 100644 --- a/docs/functions/Themes.illegalColor.html +++ b/docs/functions/Themes.illegalColor.html @@ -1,4 +1,4 @@ illegalColor | peircemyheart - v1.0.0

    Function illegalColor

    • Returns the color of illegal components on canvas. This illegal color is used to highlight nodes for deletion and nodes not allowed to be placed.

      Returns string

      Color of deletions and illegal placements on canvas.

      -
    +
    diff --git a/docs/functions/Themes.isColorblindTheme.html b/docs/functions/Themes.isColorblindTheme.html index 0109594d..ceede4f6 100644 --- a/docs/functions/Themes.isColorblindTheme.html +++ b/docs/functions/Themes.isColorblindTheme.html @@ -1,3 +1,3 @@ isColorblindTheme | peircemyheart - v1.0.0

    Function isColorblindTheme

    • Determines whether the canvas is currently in a colorblind theme.

      Returns boolean

      True if the canvas is in a colorblind theme.

      -
    +
    diff --git a/docs/functions/Themes.isDarkTheme.html b/docs/functions/Themes.isDarkTheme.html index 12ee4ed2..282edea5 100644 --- a/docs/functions/Themes.isDarkTheme.html +++ b/docs/functions/Themes.isDarkTheme.html @@ -1,3 +1,3 @@ isDarkTheme | peircemyheart - v1.0.0

    Function isDarkTheme

    • Determines whether the canvas is currently in a dark theme.

      Returns boolean

      True if the canvas is in a dark theme.

      -
    +
    diff --git a/docs/functions/Themes.legalColor.html b/docs/functions/Themes.legalColor.html index 9e270edb..75451af4 100644 --- a/docs/functions/Themes.legalColor.html +++ b/docs/functions/Themes.legalColor.html @@ -1,4 +1,4 @@ legalColor | peircemyheart - v1.0.0
    • Returns the color of legal placements on canvas. This legal color is used to highlight nodes in non-intersecting positions.

      Returns string

      Color of legal placements on canvas.

      -
    +
    diff --git a/docs/functions/Themes.placedColor.html b/docs/functions/Themes.placedColor.html index c974602a..41cd84fd 100644 --- a/docs/functions/Themes.placedColor.html +++ b/docs/functions/Themes.placedColor.html @@ -1,4 +1,4 @@ placedColor | peircemyheart - v1.0.0

    Function placedColor

    • Returns the color of a placed node on canvas. This placed color is used for nodes that are already in the Draw or Proof Mode AEGTree.

      Returns string

      Color of placed nodes on canvas.

      -
    +
    diff --git a/docs/functions/ToggleModes.toggleHandler.html b/docs/functions/ToggleModes.toggleHandler.html index 88b3a02d..bd2f4a70 100644 --- a/docs/functions/ToggleModes.toggleHandler.html +++ b/docs/functions/ToggleModes.toggleHandler.html @@ -1,3 +1,3 @@ toggleHandler | peircemyheart - v1.0.0
    • Caches the states of AEGs and tools for both Draw and Proof Mode. Updates button visibility accordingly.

      -

      Returns void

    +

    Returns void

    diff --git a/docs/modules/AEG_AEGTree.html b/docs/modules/AEG_AEGTree.html index 3608cf8f..147dbf08 100644 --- a/docs/modules/AEG_AEGTree.html +++ b/docs/modules/AEG_AEGTree.html @@ -1,2 +1,2 @@ -AEG/AEGTree | peircemyheart - v1.0.0

    Module AEG/AEGTree

    Index

    Classes

    AEGTree +AEG/AEGTree | peircemyheart - v1.0.0

    Module AEG/AEGTree

    Index

    Classes

    diff --git a/docs/modules/AEG_AEGUtils.html b/docs/modules/AEG_AEGUtils.html index 853f9b7c..2b1be626 100644 --- a/docs/modules/AEG_AEGUtils.html +++ b/docs/modules/AEG_AEGUtils.html @@ -1,4 +1,4 @@ -AEG/AEGUtils | peircemyheart - v1.0.0

    Module AEG/AEGUtils

    Index

    Functions

    getEllipsePoints +AEG/AEGUtils | peircemyheart - v1.0.0

    Module AEG/AEGUtils

    Index

    Functions

    getEllipsePoints pointInRect shapeContains shapesIntersect diff --git a/docs/modules/AEG_AtomNode.html b/docs/modules/AEG_AtomNode.html index 2b82b248..d60f5d5b 100644 --- a/docs/modules/AEG_AtomNode.html +++ b/docs/modules/AEG_AtomNode.html @@ -1,2 +1,2 @@ -AEG/AtomNode | peircemyheart - v1.0.0

    Module AEG/AtomNode

    Index

    Classes

    AtomNode +AEG/AtomNode | peircemyheart - v1.0.0

    Module AEG/AtomNode

    Index

    Classes

    diff --git a/docs/modules/AEG_CutNode.html b/docs/modules/AEG_CutNode.html index 56f4229c..ebe793df 100644 --- a/docs/modules/AEG_CutNode.html +++ b/docs/modules/AEG_CutNode.html @@ -1,2 +1,2 @@ -AEG/CutNode | peircemyheart - v1.0.0

    Module AEG/CutNode

    Index

    Classes

    CutNode +AEG/CutNode | peircemyheart - v1.0.0

    Module AEG/CutNode

    Index

    Classes

    diff --git a/docs/modules/AEG_Ellipse.html b/docs/modules/AEG_Ellipse.html index 7e58f8cf..2a82bdb0 100644 --- a/docs/modules/AEG_Ellipse.html +++ b/docs/modules/AEG_Ellipse.html @@ -1,2 +1,2 @@ -AEG/Ellipse | peircemyheart - v1.0.0

    Module AEG/Ellipse

    Index

    Classes

    Ellipse +AEG/Ellipse | peircemyheart - v1.0.0

    Module AEG/Ellipse

    Index

    Classes

    diff --git a/docs/modules/AEG_IO.html b/docs/modules/AEG_IO.html index e7642287..ffb20825 100644 --- a/docs/modules/AEG_IO.html +++ b/docs/modules/AEG_IO.html @@ -1,4 +1,4 @@ -AEG-IO | peircemyheart - v1.0.0

    Module AEG-IO

    Index

    Functions

    aegJsonString +AEG-IO | peircemyheart - v1.0.0

    Module AEG-IO

    Index

    Functions

    aegJsonString loadFile loadMode saveFile diff --git a/docs/modules/AEG_Point.html b/docs/modules/AEG_Point.html index 327f73ee..20b9a3e1 100644 --- a/docs/modules/AEG_Point.html +++ b/docs/modules/AEG_Point.html @@ -1,2 +1,2 @@ -AEG/Point | peircemyheart - v1.0.0

    Module AEG/Point

    Index

    Classes

    Point +AEG/Point | peircemyheart - v1.0.0

    Module AEG/Point

    Index

    Classes

    diff --git a/docs/modules/AEG_Rectangle.html b/docs/modules/AEG_Rectangle.html index 89dbe0ee..df9f101f 100644 --- a/docs/modules/AEG_Rectangle.html +++ b/docs/modules/AEG_Rectangle.html @@ -1,2 +1,2 @@ -AEG/Rectangle | peircemyheart - v1.0.0

    Module AEG/Rectangle

    Index

    Classes

    Rectangle +AEG/Rectangle | peircemyheart - v1.0.0

    Module AEG/Rectangle

    Index

    Classes

    diff --git a/docs/modules/DrawTools_AtomTool.html b/docs/modules/DrawTools_AtomTool.html index 5397e840..f7669fb3 100644 --- a/docs/modules/DrawTools_AtomTool.html +++ b/docs/modules/DrawTools_AtomTool.html @@ -1,4 +1,4 @@ -DrawTools/AtomTool | peircemyheart - v1.0.0

    Module DrawTools/AtomTool

    Index

    Functions

    atomKeyPress +DrawTools/AtomTool | peircemyheart - v1.0.0

    Module DrawTools/AtomTool

    Index

    Functions

    atomKeyPress atomMouseDown atomMouseMove atomMouseOut diff --git a/docs/modules/DrawTools_CopyFromDraw.html b/docs/modules/DrawTools_CopyFromDraw.html index 8e9e39ea..791a055a 100644 --- a/docs/modules/DrawTools_CopyFromDraw.html +++ b/docs/modules/DrawTools_CopyFromDraw.html @@ -1,4 +1,4 @@ -DrawTools/CopyFromDraw | peircemyheart - v1.0.0

    Module DrawTools/CopyFromDraw

    Index

    Functions

    copyFromDrawMouseDown +DrawTools/CopyFromDraw | peircemyheart - v1.0.0

    Module DrawTools/CopyFromDraw

    Index

    Functions

    copyFromDrawMouseDown copyFromDrawMouseMove copyFromDrawMouseOut copyFromDrawMouseUp diff --git a/docs/modules/DrawTools_CopyMultiTool.html b/docs/modules/DrawTools_CopyMultiTool.html index 33f65b43..35fc5ec0 100644 --- a/docs/modules/DrawTools_CopyMultiTool.html +++ b/docs/modules/DrawTools_CopyMultiTool.html @@ -1,4 +1,4 @@ -DrawTools/CopyMultiTool | peircemyheart - v1.0.0

    Module DrawTools/CopyMultiTool

    Index

    Functions

    copyMultiMouseDown +DrawTools/CopyMultiTool | peircemyheart - v1.0.0

    Module DrawTools/CopyMultiTool

    Index

    Functions

    copyMultiMouseDown copyMultiMouseMove copyMultiMouseOut copyMultiMouseUp diff --git a/docs/modules/DrawTools_CopySingleTool.html b/docs/modules/DrawTools_CopySingleTool.html index 47929648..0b1eba71 100644 --- a/docs/modules/DrawTools_CopySingleTool.html +++ b/docs/modules/DrawTools_CopySingleTool.html @@ -1,4 +1,4 @@ -DrawTools/CopySingleTool | peircemyheart - v1.0.0

    Module DrawTools/CopySingleTool

    Index

    Functions

    copySingleMouseDown +DrawTools/CopySingleTool | peircemyheart - v1.0.0

    Module DrawTools/CopySingleTool

    Index

    Functions

    copySingleMouseDown copySingleMouseMove copySingleMouseOut copySingleMouseUp diff --git a/docs/modules/DrawTools_CutTool.html b/docs/modules/DrawTools_CutTool.html index 6b4d4b33..36799c00 100644 --- a/docs/modules/DrawTools_CutTool.html +++ b/docs/modules/DrawTools_CutTool.html @@ -1,4 +1,4 @@ -DrawTools/CutTool | peircemyheart - v1.0.0

    Module DrawTools/CutTool

    Index

    Functions

    cutMouseDown +DrawTools/CutTool | peircemyheart - v1.0.0

    Module DrawTools/CutTool

    Index

    Functions

    cutMouseDown cutMouseEnter cutMouseMove cutMouseOut diff --git a/docs/modules/DrawTools_DeleteMultiTool.html b/docs/modules/DrawTools_DeleteMultiTool.html index ae9a1ecb..2dc4e85a 100644 --- a/docs/modules/DrawTools_DeleteMultiTool.html +++ b/docs/modules/DrawTools_DeleteMultiTool.html @@ -1,4 +1,4 @@ -DrawTools/DeleteMultiTool | peircemyheart - v1.0.0

    Module DrawTools/DeleteMultiTool

    Index

    Functions

    deleteMultiMouseDown +DrawTools/DeleteMultiTool | peircemyheart - v1.0.0

    Module DrawTools/DeleteMultiTool

    Index

    Functions

    deleteMultiMouseDown deleteMultiMouseMove deleteMultiMouseOut deleteMultiMouseUp diff --git a/docs/modules/DrawTools_DeleteSingleTool.html b/docs/modules/DrawTools_DeleteSingleTool.html index 374208d4..56bcc2db 100644 --- a/docs/modules/DrawTools_DeleteSingleTool.html +++ b/docs/modules/DrawTools_DeleteSingleTool.html @@ -1,4 +1,4 @@ -DrawTools/DeleteSingleTool | peircemyheart - v1.0.0

    Module DrawTools/DeleteSingleTool

    Index

    Functions

    deleteSingleMouseDown +DrawTools/DeleteSingleTool | peircemyheart - v1.0.0

    Module DrawTools/DeleteSingleTool

    Index

    Functions

    deleteSingleMouseDown deleteSingleMouseMove deleteSingleMouseOut deleteSingleMouseUp diff --git a/docs/modules/DrawTools_DrawClearTool.html b/docs/modules/DrawTools_DrawClearTool.html index f7d531c4..41cf199c 100644 --- a/docs/modules/DrawTools_DrawClearTool.html +++ b/docs/modules/DrawTools_DrawClearTool.html @@ -1,4 +1,4 @@ -DrawTools/DrawClearTool | peircemyheart - v1.0.0

    Module DrawTools/DrawClearTool

    Index

    Functions

    drawClearMouseDown +DrawTools/DrawClearTool | peircemyheart - v1.0.0
    diff --git a/docs/modules/DrawTools_DrawMoveMultiTool.html b/docs/modules/DrawTools_DrawMoveMultiTool.html index 7ad37f49..f855aca4 100644 --- a/docs/modules/DrawTools_DrawMoveMultiTool.html +++ b/docs/modules/DrawTools_DrawMoveMultiTool.html @@ -1,4 +1,4 @@ -DrawTools/DrawMoveMultiTool | peircemyheart - v1.0.0

    Module DrawTools/DrawMoveMultiTool

    Index

    Functions

    drawMoveMultiMouseDown +DrawTools/DrawMoveMultiTool | peircemyheart - v1.0.0

    Module DrawTools/DrawMoveMultiTool

    Index

    Functions

    drawMoveMultiMouseDown drawMoveMultiMouseMove drawMoveMultiMouseOut drawMoveMultiMouseUp diff --git a/docs/modules/DrawTools_DrawMoveSingleTool.html b/docs/modules/DrawTools_DrawMoveSingleTool.html index b3f69155..722c7a20 100644 --- a/docs/modules/DrawTools_DrawMoveSingleTool.html +++ b/docs/modules/DrawTools_DrawMoveSingleTool.html @@ -1,4 +1,4 @@ -DrawTools/DrawMoveSingleTool | peircemyheart - v1.0.0

    Module DrawTools/DrawMoveSingleTool

    Index

    Functions

    drawMoveSingleMouseDown +DrawTools/DrawMoveSingleTool | peircemyheart - v1.0.0

    Module DrawTools/DrawMoveSingleTool

    Index

    Functions

    drawMoveSingleMouseDown drawMoveSingleMouseMove drawMoveSingleMouseOut drawMoveSingleMouseUp diff --git a/docs/modules/DrawTools_DrawResizeTool.html b/docs/modules/DrawTools_DrawResizeTool.html index cba67ae6..01df9aa9 100644 --- a/docs/modules/DrawTools_DrawResizeTool.html +++ b/docs/modules/DrawTools_DrawResizeTool.html @@ -1,4 +1,4 @@ -DrawTools/DrawResizeTool | peircemyheart - v1.0.0

    Module DrawTools/DrawResizeTool

    Index

    Functions

    drawResizeMouseDown +DrawTools/DrawResizeTool | peircemyheart - v1.0.0

    Module DrawTools/DrawResizeTool

    Index

    Functions

    drawResizeMouseDown drawResizeMouseMove drawResizeMouseOut drawResizeMouseUp diff --git a/docs/modules/ProofTools_DeiterationTool.html b/docs/modules/ProofTools_DeiterationTool.html index 028cedf9..4c519aa1 100644 --- a/docs/modules/ProofTools_DeiterationTool.html +++ b/docs/modules/ProofTools_DeiterationTool.html @@ -1,4 +1,4 @@ -ProofTools/DeiterationTool | peircemyheart - v1.0.0

    Module ProofTools/DeiterationTool

    Index

    Functions

    deiterationMouseDown +ProofTools/DeiterationTool | peircemyheart - v1.0.0

    Module ProofTools/DeiterationTool

    Index

    Functions

    deiterationMouseDown deiterationMouseMove deiterationMouseOut deiterationMouseUp diff --git a/docs/modules/ProofTools_DoubleCutDeletionTool.html b/docs/modules/ProofTools_DoubleCutDeletionTool.html index 6de2fe5e..5da95ad9 100644 --- a/docs/modules/ProofTools_DoubleCutDeletionTool.html +++ b/docs/modules/ProofTools_DoubleCutDeletionTool.html @@ -1,4 +1,4 @@ -ProofTools/DoubleCutDeletionTool | peircemyheart - v1.0.0

    Module ProofTools/DoubleCutDeletionTool

    Index

    Functions

    doubleCutDeletionMouseDown +ProofTools/DoubleCutDeletionTool | peircemyheart - v1.0.0

    Module ProofTools/DoubleCutDeletionTool

    Index

    Functions

    doubleCutDeletionMouseDown doubleCutDeletionMouseMove doubleCutDeletionMouseOut doubleCutDeletionMouseUp diff --git a/docs/modules/ProofTools_DoubleCutInsertionTool.html b/docs/modules/ProofTools_DoubleCutInsertionTool.html index 8a8dd586..05c4c745 100644 --- a/docs/modules/ProofTools_DoubleCutInsertionTool.html +++ b/docs/modules/ProofTools_DoubleCutInsertionTool.html @@ -1,4 +1,4 @@ -ProofTools/DoubleCutInsertionTool | peircemyheart - v1.0.0

    Module ProofTools/DoubleCutInsertionTool

    Index

    Functions

    doubleCutInsertionMouseDown +ProofTools/DoubleCutInsertionTool | peircemyheart - v1.0.0

    Module ProofTools/DoubleCutInsertionTool

    Index

    Functions

    doubleCutInsertionMouseDown doubleCutInsertionMouseEnter doubleCutInsertionMouseMove doubleCutInsertionMouseOut diff --git a/docs/modules/ProofTools_ErasureTool.html b/docs/modules/ProofTools_ErasureTool.html index 1cbd01c8..3bf526db 100644 --- a/docs/modules/ProofTools_ErasureTool.html +++ b/docs/modules/ProofTools_ErasureTool.html @@ -1,4 +1,4 @@ -ProofTools/ErasureTool | peircemyheart - v1.0.0

    Module ProofTools/ErasureTool

    Index

    Functions

    erasureMouseDown +ProofTools/ErasureTool | peircemyheart - v1.0.0

    Module ProofTools/ErasureTool

    Index

    Functions

    erasureMouseDown erasureMouseMove erasureMouseOut erasureMouseUp diff --git a/docs/modules/ProofTools_InsertionTool.html b/docs/modules/ProofTools_InsertionTool.html index b77eada4..ed9d7bf9 100644 --- a/docs/modules/ProofTools_InsertionTool.html +++ b/docs/modules/ProofTools_InsertionTool.html @@ -1,4 +1,4 @@ -ProofTools/InsertionTool | peircemyheart - v1.0.0

    Module ProofTools/InsertionTool

    Index

    Functions

    insertionMouseDown +ProofTools/InsertionTool | peircemyheart - v1.0.0

    Module ProofTools/InsertionTool

    Index

    Functions

    insertionMouseDown insertionMouseMove insertionMouseOut insertionMouseUp diff --git a/docs/modules/ProofTools_IterationTool.html b/docs/modules/ProofTools_IterationTool.html index dd01242c..02547701 100644 --- a/docs/modules/ProofTools_IterationTool.html +++ b/docs/modules/ProofTools_IterationTool.html @@ -1,4 +1,4 @@ -ProofTools/IterationTool | peircemyheart - v1.0.0

    Module ProofTools/IterationTool

    Index

    Functions

    iterationMouseDown +ProofTools/IterationTool | peircemyheart - v1.0.0

    Module ProofTools/IterationTool

    Index

    Functions

    iterationMouseDown iterationMouseMove iterationMouseOut iterationMouseUp diff --git a/docs/modules/ProofTools_PasteInProof.html b/docs/modules/ProofTools_PasteInProof.html index 29092212..70f58723 100644 --- a/docs/modules/ProofTools_PasteInProof.html +++ b/docs/modules/ProofTools_PasteInProof.html @@ -1,4 +1,4 @@ -ProofTools/PasteInProof | peircemyheart - v1.0.0

    Module ProofTools/PasteInProof

    Index

    Functions

    pasteInProofMouseDown +ProofTools/PasteInProof | peircemyheart - v1.0.0

    Module ProofTools/PasteInProof

    Index

    Functions

    pasteInProofMouseDown pasteInProofMouseMove pasteInProofMouseOut pasteInProofMouseUp diff --git a/docs/modules/ProofTools_ProofClearTool.html b/docs/modules/ProofTools_ProofClearTool.html index 03388d38..b8a27278 100644 --- a/docs/modules/ProofTools_ProofClearTool.html +++ b/docs/modules/ProofTools_ProofClearTool.html @@ -1,4 +1,4 @@ -ProofTools/ProofClearTool | peircemyheart - v1.0.0

    Module ProofTools/ProofClearTool

    Index

    Functions

    proofClearMouseDown +ProofTools/ProofClearTool | peircemyheart - v1.0.0
    diff --git a/docs/modules/ProofTools_ProofMoveMultiTool.html b/docs/modules/ProofTools_ProofMoveMultiTool.html index 3e445654..1a70a66a 100644 --- a/docs/modules/ProofTools_ProofMoveMultiTool.html +++ b/docs/modules/ProofTools_ProofMoveMultiTool.html @@ -1,4 +1,4 @@ -ProofTools/ProofMoveMultiTool | peircemyheart - v1.0.0

    Module ProofTools/ProofMoveMultiTool

    Index

    Functions

    proofMoveMultiMouseDown +ProofTools/ProofMoveMultiTool | peircemyheart - v1.0.0

    Module ProofTools/ProofMoveMultiTool

    Index

    Functions

    proofMoveMultiMouseDown proofMoveMultiMouseMove proofMoveMultiMouseOut proofMoveMultiMouseUp diff --git a/docs/modules/ProofTools_ProofMoveSingleTool.html b/docs/modules/ProofTools_ProofMoveSingleTool.html index 567dc2c4..f0498cbc 100644 --- a/docs/modules/ProofTools_ProofMoveSingleTool.html +++ b/docs/modules/ProofTools_ProofMoveSingleTool.html @@ -1,4 +1,4 @@ -ProofTools/ProofMoveSingleTool | peircemyheart - v1.0.0

    Module ProofTools/ProofMoveSingleTool

    Index

    Functions

    proofMoveSingleMouseDown +ProofTools/ProofMoveSingleTool | peircemyheart - v1.0.0

    Module ProofTools/ProofMoveSingleTool

    Index

    Functions

    proofMoveSingleMouseDown proofMoveSingleMouseMove proofMoveSingleMouseOut proofMoveSingleMouseUp diff --git a/docs/modules/ProofTools_ProofResizeTool.html b/docs/modules/ProofTools_ProofResizeTool.html index e7745fdb..e3c2be28 100644 --- a/docs/modules/ProofTools_ProofResizeTool.html +++ b/docs/modules/ProofTools_ProofResizeTool.html @@ -1,4 +1,4 @@ -ProofTools/ProofResizeTool | peircemyheart - v1.0.0

    Module ProofTools/ProofResizeTool

    Index

    Functions

    proofResizeMouseDown +ProofTools/ProofResizeTool | peircemyheart - v1.0.0

    Module ProofTools/ProofResizeTool

    Index

    Functions

    proofResizeMouseDown proofResizeMouseMove proofResizeMouseOut proofResizeMouseUp diff --git a/docs/modules/ProofTools_ProofToolUtils.html b/docs/modules/ProofTools_ProofToolUtils.html index 63971edc..a8a7009c 100644 --- a/docs/modules/ProofTools_ProofToolUtils.html +++ b/docs/modules/ProofTools_ProofToolUtils.html @@ -1,4 +1,4 @@ -ProofTools/ProofToolUtils | peircemyheart - v1.0.0

    Module ProofTools/ProofToolUtils

    Index

    Functions

    getCurrentProofTree +ProofTools/ProofToolUtils | peircemyheart - v1.0.0
    diff --git a/docs/modules/SharedToolUtils_DragTool.html b/docs/modules/SharedToolUtils_DragTool.html index 9d5dfbcf..ad9d818d 100644 --- a/docs/modules/SharedToolUtils_DragTool.html +++ b/docs/modules/SharedToolUtils_DragTool.html @@ -1,4 +1,4 @@ -SharedToolUtils/DragTool | peircemyheart - v1.0.0

    Module SharedToolUtils/DragTool

    Index

    Variables

    offset +SharedToolUtils/DragTool | peircemyheart - v1.0.0

    Module SharedToolUtils/DragTool

    Index

    Variables

    Functions

    dragMouseDown dragMouseEnter dragMouseMove diff --git a/docs/modules/SharedToolUtils_DrawUtils.html b/docs/modules/SharedToolUtils_DrawUtils.html index b020365a..2b2c9365 100644 --- a/docs/modules/SharedToolUtils_DrawUtils.html +++ b/docs/modules/SharedToolUtils_DrawUtils.html @@ -1,4 +1,4 @@ -SharedToolUtils/DrawUtils | peircemyheart - v1.0.0

    Module SharedToolUtils/DrawUtils

    Index

    Functions

    changeCursorStyle +SharedToolUtils/DrawUtils | peircemyheart - v1.0.0

    Module SharedToolUtils/DrawUtils

    Index

    Functions

    changeCursorStyle cleanCanvas determineAndChangeCursorStyle determineDirection diff --git a/docs/modules/SharedToolUtils_EditModeUtils.html b/docs/modules/SharedToolUtils_EditModeUtils.html index 776b31ae..f5164d05 100644 --- a/docs/modules/SharedToolUtils_EditModeUtils.html +++ b/docs/modules/SharedToolUtils_EditModeUtils.html @@ -1,4 +1,4 @@ -SharedToolUtils/EditModeUtils | peircemyheart - v1.0.0

    Module SharedToolUtils/EditModeUtils

    Index

    Functions

    alterAtom +SharedToolUtils/EditModeUtils | peircemyheart - v1.0.0

    Module SharedToolUtils/EditModeUtils

    Index

    Functions

    alterAtom alterCut alterCutChildren alterNode diff --git a/docs/modules/Themes.html b/docs/modules/Themes.html index aec72007..c6404a73 100644 --- a/docs/modules/Themes.html +++ b/docs/modules/Themes.html @@ -1,4 +1,4 @@ -Themes | peircemyheart - v1.0.0

    Module Themes

    Index

    Functions

    cssVar +Themes | peircemyheart - v1.0.0

    Module Themes

    Index

    Functions

    cssVar illegalColor isColorblindTheme isDarkTheme diff --git a/docs/modules/ToggleModes.html b/docs/modules/ToggleModes.html index dbe0ebd5..7069d2a9 100644 --- a/docs/modules/ToggleModes.html +++ b/docs/modules/ToggleModes.html @@ -1,2 +1,2 @@ -ToggleModes | peircemyheart - v1.0.0

    Module ToggleModes

    Index

    Functions

    toggleHandler +ToggleModes | peircemyheart - v1.0.0

    Module ToggleModes

    Index

    Functions

    diff --git a/docs/modules/TreeContext.html b/docs/modules/TreeContext.html index 18d073ac..e4c9d334 100644 --- a/docs/modules/TreeContext.html +++ b/docs/modules/TreeContext.html @@ -1,3 +1,3 @@ -TreeContext | peircemyheart - v1.0.0

    Module TreeContext

    Index

    Enumerations

    Tool +TreeContext | peircemyheart - v1.0.0

    Module TreeContext

    Index

    Enumerations

    Classes

    diff --git a/docs/variables/SharedToolUtils_DragTool.offset.html b/docs/variables/SharedToolUtils_DragTool.offset.html index 117971f8..34b81485 100644 --- a/docs/variables/SharedToolUtils_DragTool.offset.html +++ b/docs/variables/SharedToolUtils_DragTool.offset.html @@ -1 +1 @@ -offset | peircemyheart - v1.0.0
    +offset | peircemyheart - v1.0.0