mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-08 13:30:04 +00:00
3c9673c447
- updated the edge-only and edge-corner shapes consistent with Catmark - moved the existing triangulated cube to loop_cube_asymmetric - added new loop_cube with symmetric triangulation and limit surface - added semi-sharp and inf-sharp variations of cube and icosahedron - added shapes with extra-ordinary interior and boundary vertices - added shapes with face-varying features similar to Catmark
89 lines
2.2 KiB
C++
89 lines
2.2 KiB
C++
//
|
|
// Copyright 2018 DreamWorks Animation LLC.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "Apache License")
|
|
// with the following modification; you may not use this file except in
|
|
// compliance with the Apache License and the following modification to it:
|
|
// Section 6. Trademarks. is deleted and replaced with:
|
|
//
|
|
// 6. Trademarks. This License does not grant permission to use the trade
|
|
// names, trademarks, service marks, or product names of the Licensor
|
|
// and its affiliates, except as required to comply with Section 4(c) of
|
|
// the License and to reproduce the content of the NOTICE file.
|
|
//
|
|
// You may obtain a copy of the Apache License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the Apache License with the above modification is
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the Apache License for the specific
|
|
// language governing permissions and limitations under the Apache License.
|
|
//
|
|
|
|
static const std::string loop_cube =
|
|
"\n"
|
|
"v 1 -1 1\n"
|
|
"v 1 1 1\n"
|
|
"v -1 -1 1\n"
|
|
"v -1 1 1\n"
|
|
"v -1 -1 -1\n"
|
|
"v -1 1 -1\n"
|
|
"v 1 -1 -1\n"
|
|
"v 1 1 -1\n"
|
|
"v 0 0 1\n"
|
|
"v -1 0 0\n"
|
|
"v 0 0 -1\n"
|
|
"v 1 0 0\n"
|
|
"v 0 1 0\n"
|
|
"v 0 -1 0\n"
|
|
"\n"
|
|
"vt 0.375 0.000\n"
|
|
"vt 0.625 0.000\n"
|
|
"vt 0.375 0.250\n"
|
|
"vt 0.625 0.250\n"
|
|
"vt 0.375 0.500\n"
|
|
"vt 0.625 0.500\n"
|
|
"vt 0.375 0.750\n"
|
|
"vt 0.625 0.750\n"
|
|
"vt 0.375 1.000\n"
|
|
"vt 0.625 1.000\n"
|
|
"vt 0.875 0.000\n"
|
|
"vt 0.875 0.250\n"
|
|
"vt 0.125 0.000\n"
|
|
"vt 0.125 0.250\n"
|
|
"vt 0.500 0.125\n"
|
|
"vt 0.500 0.375\n"
|
|
"vt 0.500 0.625\n"
|
|
"vt 0.500 0.875\n"
|
|
"vt 0.750 0.125\n"
|
|
"vt 0.250 0.125\n"
|
|
"\n"
|
|
"f 9/15 1/1 2/2\n"
|
|
"f 9/15 2/2 4/4\n"
|
|
"f 9/15 4/4 3/3\n"
|
|
"f 9/15 3/3 1/1\n"
|
|
"f 10/16 3/3 4/4\n"
|
|
"f 10/16 4/4 6/6\n"
|
|
"f 10/16 6/6 5/5\n"
|
|
"f 10/16 5/5 3/3\n"
|
|
"f 11/17 5/5 6/6\n"
|
|
"f 11/17 6/6 8/8\n"
|
|
"f 11/17 8/8 7/7\n"
|
|
"f 11/17 7/7 5/5\n"
|
|
"f 12/18 7/7 8/8\n"
|
|
"f 12/18 8/8 2/10\n"
|
|
"f 12/18 2/10 1/9 \n"
|
|
"f 12/18 1/9 7/7\n"
|
|
"f 13/19 2/2 8/11\n"
|
|
"f 13/19 8/11 6/12\n"
|
|
"f 13/19 6/12 4/4\n"
|
|
"f 13/19 4/4 2/2\n"
|
|
"f 14/20 7/13 1/1\n"
|
|
"f 14/20 1/1 3/3\n"
|
|
"f 14/20 3/3 5/14\n"
|
|
"f 14/20 5/14 7/13\n"
|
|
"\n"
|
|
;
|