blob: 081cbf2a1665f063d423be17c56ef4461a5eb4f5 [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 Vector3 axis = Vector3.zero();
IntersectionResult();
}