def test_halfBreakingNoCornering(self):
        plotter = GPlotter(320, 200, 2, 2)

        x, y = plotter.plotG(0, 1)

        self.assertEqual(160, x)
        self.assertEqual(150, y)
Example #2
0
    def test_halfBreakingNoCornering(self):
        plotter = GPlotter(320, 200, 2, 2)

        x, y = plotter.plotG(0, 1)

        self.assertEqual(160, x)
        self.assertEqual(150, y)
    def test_plotAll(self):
        plotter = GPlotter(320, 200, 2, 2)
        dataPoints = [{"x": 1, "z": 1}, {"x": 1, "z": 1}]

        allPlots = plotter.plotAll(dataPoints)

        self.assertEqual(2, len(allPlots))
        self.assertTrue(allPlots[0][0] < 320 and allPlots[0][0] > 0,
                        "Plotted x values must be between the range -160:160 " + str(allPlots))
Example #4
0
    def test_plotAll(self):
        plotter = GPlotter(320, 200, 2, 2)
        dataPoints = [{"x": 1, "z": 1}, {"x": 1, "z": 1}]

        allPlots = plotter.plotAll(dataPoints)

        self.assertEqual(2, len(allPlots))
        self.assertTrue(
            allPlots[0][0] < 320 and allPlots[0][0] > 0,
            "Plotted x values must be between the range -160:160 " +
            str(allPlots))
    def test_centerPoint(self):
        plotter = GPlotter(320, 200, 2, 2)

        x, y = plotter.plotG(0, 0)
        self.assertEqual(160, x)
        self.assertEqual(100, y)
Example #6
0
    def test_centerPoint(self):
        plotter = GPlotter(320, 200, 2, 2)

        x, y = plotter.plotG(0, 0)
        self.assertEqual(160, x)
        self.assertEqual(100, y)