// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 #pragma once #include #include #include namespace frantic { namespace geometry { /** * Builds a polymesh3 from a trimesh. * * @param inMesh a trimesh to use as the template * @return a newly constructed polymesh3 */ polymesh3_ptr trimesh3_to_polymesh3( const trimesh3& inMesh ); } // namespace geometry } // namespace frantic