11 lines
227 B
C#
11 lines
227 B
C#
// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GLTFast.Schema
|
|
{
|
|
static class Constants
|
|
{
|
|
public const float epsilon = .001f;
|
|
}
|
|
}
|