tbttfox / math3d

A numpy based vector/transform library with a focus on 3d graphics
20 stars 1 forks source link

MatrixN.flattened() is defined twice #2

Closed jpasserin closed 2 years ago

jpasserin commented 2 years ago

Line 212

    def flattened(self):
        return self.reshape(self.N**2)

Line 361

    def flattened(self):
        return self.reshape((-1, self.N**2))
jpasserin commented 2 years ago

My bad, it's not in the same class