I am trying to make each point appear in the graph and connect the points after all 3 are entered in the table so students can visually see if they reflected the triangle correctly.
Not sure where my mistake is.
Thanks!!!
I am trying to make each point appear in the graph and connect the points after all 3 are entered in the table so students can visually see if they reflected the triangle correctly.
Not sure where my mistake is.
Thanks!!!
You need to use cellContent
rather than cellNumericValue, and you’re also missing a closing bracket.
Try
number(`a`): numericValue(parseOrderedPair(table.cellContent(1,2)).x)
number(`b`): numericValue(parseOrderedPair(table.cellContent(1,2)).y)
etc.