mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-19 05:40:34 +08:00
Adding a Checkerboard mesh utility to Pytorch3d
Summary: Adding a checkerboard mesh utility to Pytorch3d. Reviewed By: bottler Differential Revision: D39718916 fbshipit-source-id: d43cd30e566b5db068bae6eed0388057634428c8
This commit is contained in:
committed by
Facebook GitHub Bot
parent
f34da3d3b6
commit
ce3fce49d7
21
tests/test_checkerboard.py
Normal file
21
tests/test_checkerboard.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-style license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
|
||||
import unittest
|
||||
|
||||
import torch
|
||||
from pytorch3d.utils import checkerboard
|
||||
|
||||
from .common_testing import TestCaseMixin
|
||||
|
||||
|
||||
class TestCheckerboard(TestCaseMixin, unittest.TestCase):
|
||||
def test_simple(self):
|
||||
board = checkerboard(5)
|
||||
verts = board.verts_packed()
|
||||
expect = torch.tensor([5.0, 5.0, 0])
|
||||
self.assertClose(verts.min(dim=0).values, -expect)
|
||||
self.assertClose(verts.max(dim=0).values, expect)
|
||||
Reference in New Issue
Block a user