Tracking: Fix ground plane normal facing downwards

This commit is contained in:
Sergey Sharybin 2014-09-21 15:55:12 +06:00
parent 398ca952ab
commit 1ce09ff411
1 changed files with 2 additions and 2 deletions

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)