blob: ff5a5830df37c79a049267c9cddee8d7b870a4c1 [file] [log] [blame]
// Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
part of vector_math_64;
/// Defines a result of an intersection test.
class IntersectionResult {
double? _depth;
/// The penetration depth of the intersection.
double? get depth => _depth;
/// The [axis] of the intersection.
final axis = Vector3.zero();
IntersectionResult();
}