Tracking: Fix ground plane normal facing downwards

This commit is contained in:
2014-09-21 15:55:12 +06:00
parent 398ca952ab
commit 1ce09ff411

View File

@@ -780,9 +780,9 @@ class CLIP_OT_setup_tracking_scene(Operator):
def _getPlaneVertices(half_size, z):
return [(-half_size, -half_size, z),
(-half_size, half_size, z),
(half_size, -half_size, z),
(half_size, half_size, z),
(half_size, -half_size, z)]
(-half_size, half_size, z)]
def _createGround(self, scene):
vertices = self._getPlaneVertices(4.0, 0.0)