diff --git a/docs/classes/AEG_AEGTree.AEGTree.html b/docs/classes/AEG_AEGTree.AEGTree.html index 3089510a..e697c884 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 f3cafee2..a805d9a3 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 9604fb96..3eaaac75 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 4503483d..ec8e9713 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 2e1f52f7..186d82e2 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 cf454bef..28cc2f58 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 3c777377..65996148 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 1d6e1179..42e4b5d0 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 6c80aa0f..7a0a8b57 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 f3ad12ce..ae97d8b8 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 750a4162..56393acb 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 c999f4c8..fae46977 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 b8fb4ea9..9c135a19 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 2dc2bcb3..7b2292ba 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 af67b322..1b91292f 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 fa4a88d5..b128f36a 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 3d47088a..a0eb7bfb 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 a855b181..6c820f09 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 f5e873b7..3ecd7421 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 a47fdbd7..f1321d2a 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 83a8f0b9..b3aaa55a 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 da5d403e..713b36ee 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 5b933733..e4154e0a 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 f56d87ad..fed1d6ec 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 7c3db4f3..b86e3eb8 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 5b0d328f..0802aaa3 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 32743cf7..9a16bfe4 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 8883ded0..94bba07e 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 0cdda9a2..9eb9b766 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 15bf124b..dd7bae18 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 99baca67..7ce85eff 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 a53cc495..07a4a15e 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 e8ec189b..42aac358 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 62205d68..6c7850c4 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 f5e01502..d210b3f4 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 846c0756..0c139f1a 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 e8362c8b..61e5226a 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 5b9c756f..dcb28523 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 a8b21fd2..af5ef1d8 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 4919769f..883ad5d5 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 003ab503..a914522f 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 f93eb2c7..6c138595 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 c75f29fc..5e383581 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 a1a821df..dce954e7 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 778ce092..4dbaf1d8 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 4183dd4a..0c14df81 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 00ea103c..60a18c44 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 368e9a91..a74a189b 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 7ac6610f..b5469df3 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 4cf1d7d3..8aa2ce04 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 d50f50f6..0c6713cd 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 1fc4c48e..2cf51bf7 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 c5da9992..d3cb41a0 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 4dc702a6..020f7c74 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 8209c15e..f188faba 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 3e8b6868..073ce2fc 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 46079948..a3b62119 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 5cb4b8c4..b2dc708d 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 11fd3c5b..5567b7a4 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 fff96840..20f7b8fb 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 cf214166..f391cef5 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 44321b3c..363e2590 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 26ecf9bc..786bc4c9 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 dde008e3..2fcf70e3 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 bed847de..fcb32fd3 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 e418b865..99698bad 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 0ea09ea7..ff782e11 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 77cba6a0..0b9f1499 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 34c35fcb..c094246e 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 276dcc0e..39a61029 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 3bc93d28..2fdd6e27 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 4b016ca7..2450dbe6 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 8ed8e943..920e3e06 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 11d2c5c3..3664458b 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 7ea32bf2..9e4b928f 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 bb47fe00..db5dafc6 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 ae15361f..d8ffd33a 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 d22ccaa3..36a85608 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 6da4da94..b3ae54b5 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 36cc83b2..85be9cb4 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 f78f4aea..e1cb6932 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 2dd7835e..c3340117 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 9e9bfce9..60c4d96d 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 28ff6328..bfba4aa5 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 b17d00cc..6e654e94 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 52b42700..e83744a0 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 4d1ad133..f5736e64 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 ef2cde9d..1f42e78d 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 a22d0b34..d7e52faa 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 b91649c1..4e928055 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 98e0738b..b2634269 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 27c44904..ab9463d2 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 1f4e6ec4..53627c3f 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 012fe4d9..f91ac463 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 c613bb36..0671c3f4 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 125619bf..ffc15db9 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 f0d66c84..a9bd12c3 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 75eddfbe..fa195aa4 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 41b972e8..f432f14f 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 8c478030..af81d36a 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 e187e3e6..51951d3a 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 a28bc6b3..fb32c0f6 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 4b938b48..b6f9eaf1 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 03bd179c..b8b1c3ae 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 e3dc774b..fb6978bf 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 1fc4b101..7c075dee 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 921389ea..0c11b1b7 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 ac79264a..39129050 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 ed4aa5af..4d895dc2 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 6e7ab1f9..a2a5306c 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 1acaedec..6906d6cc 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 622d9a11..9bd3e387 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 8027c844..d8c3d360 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 47baa4c9..7ac3bc65 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 9cd94b2c..005d7392 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 a6c1e406..51b1247a 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 053ef0ca..86ff1dcb 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 08656fe6..497df27b 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 c8cdfb5e..7d513ebf 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 072c200b..fb7d5d84 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 6f53a832..11a2f139 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 173e3bfd..963efc68 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 a68f11bf..56457f58 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 a94cac07..0ffec49e 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 1aaec3ad..21f726c6 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 91e42410..215b997c 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 09bd2af7..f8387d40 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 523fa6c1..d384a468 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 5f122d8e..32f95266 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 49c5ecef..a77d715b 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 e2c26d2b..a155a9eb 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 4787a846..06fe8d0e 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 8493ed25..1ca07a71 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 341598bd..63cdba4f 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 594252d8..7fef65dc 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 fc3320b0..d5f6d4a7 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 07d896a6..b3c6323a 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 b0d750d2..fe0e8ce1 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 aaabaa83..35aa21ae 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 203ea4e5..1fb00abe 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 9552aa00..2be9f33b 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 7cb74208..ce59178e 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 12c0827a..fdfc7983 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 ceede4f6..c6117aa9 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 282edea5..91c1265e 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 75451af4..39eedec9 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 41cd84fd..5b912690 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 bd2f4a70..21451727 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 147dbf08..3037da31 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 2b1be626..244b0a74 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 d60f5d5b..e910990f 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 ebe793df..7737c1c8 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 2a82bdb0..d18da683 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 ffb20825..ae23d64d 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 20b9a3e1..e226af20 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 df9f101f..e2f46572 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 f7669fb3..d90eefb4 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 791a055a..714f9d11 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 35fc5ec0..62c716e9 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 0b1eba71..609f27ae 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 36799c00..a5de0ce5 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 2dc4e85a..79bd4c56 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 56bcc2db..e90d26ce 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 41cf199c..2dfa9c2a 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 f855aca4..301b6024 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 722c7a20..50a7bf9f 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 01df9aa9..05ec1279 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 4c519aa1..0f41b1bf 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 5da95ad9..e5cdba7f 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 05c4c745..c50125cd 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 3bf526db..d8de730c 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 ed9d7bf9..525751f7 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 02547701..1dfef96c 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 70f58723..85e9608a 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 b8a27278..38fdadff 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 1a70a66a..0b606e56 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 f0498cbc..de50a4c0 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 e3c2be28..e70c1676 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 a8a7009c..491accca 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 ad9d818d..c1001e47 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 2b2c9365..6cc7023f 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 f5164d05..834acd15 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 c6404a73..8c7275d4 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 7069d2a9..02e70718 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 e4c9d334..553b3c4a 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 34b81485..f2d53452 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