This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Author: Manuel Espino. | |
/// github: https://github.com/Maesla | |
/// unity forum: https://forum.unity.com/members/maeslezo.863356/ | |
/// Utilities to get the inertia tensor matrix from a rigidbody | |
/// and to get the inertia tensor and inertia tensor rotation from a inertia tensor matrix | |
///----------------------------------------------------------------- | |
using UnityEngine; | |
public static class InertiaTensorUtils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NUnit.Framework.Constraints; | |
public class EventClass | |
{ | |
public int CallCount { get; private set; } | |
public void Callback() | |
{ | |
CallCount++; | |
} |