All Projects → zalo → Mathutilities

zalo / Mathutilities

Licence: unlicense
A collection of some of the neat math and physics tricks that I've collected over the last few years.

Programming Languages

C#
18002 projects
ShaderLab
938 projects
GLSL
2045 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mathutilities

Unity Destruction
💥 An open-source script to destroy objects realistically in Unity3D.
Stars: ✭ 291 (-89.66%)
Mutual labels:  unity, unity3d, physics
Tork
Arcade vehicle physics for Unity
Stars: ✭ 256 (-90.91%)
Mutual labels:  unity, unity3d, physics
Unitybarcodescanner
Simple Unity Barcode Scanner
Stars: ✭ 180 (-93.61%)
Mutual labels:  unity, unity3d, camera
Unity Script Collection
A maintained collection of useful & free unity scripts / library's / plugins and extensions
Stars: ✭ 3,640 (+29.31%)
Mutual labels:  unity, unity3d, physics
Randomation Vehicle Physics
Vehicle physics system for the Unity engine.
Stars: ✭ 487 (-82.7%)
Mutual labels:  unity, unity3d, physics
Swissarmylib
Collection of helpful utilities we use in our Unity projects.
Stars: ✭ 154 (-94.53%)
Mutual labels:  unity, unity3d, utilities
Deadsimple Pixel Perfect Camera
An exceedingly easy-to-use pixel perfect orthographic camera script for 2D scenes in Unity. Punch in a few specs and you've got a working pixel perfect camera. It's that easy.
Stars: ✭ 186 (-93.39%)
Mutual labels:  unity, unity3d, camera
Minis
Minis: MIDI Input for New Input System -- A plugin that adds MIDI input support to Unity's new Input System
Stars: ✭ 214 (-92.4%)
Mutual labels:  unity, unity3d
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (-92.97%)
Mutual labels:  unity, unity3d
Noteeditor
Note editor for rhythm games.
Stars: ✭ 216 (-92.33%)
Mutual labels:  unity, unity3d
Nativecollections
Native Collection Types for Unity
Stars: ✭ 213 (-92.43%)
Mutual labels:  unity, unity3d
Noiseball2
A small example of procedural modeling with compute shaders.
Stars: ✭ 215 (-92.36%)
Mutual labels:  unity, unity3d
Casinosclient
果派德州客户端源代码,使用Unity3D引擎。
Stars: ✭ 217 (-92.29%)
Mutual labels:  unity, unity3d
Contactshadows
Experimental implementation of contact shadows for Unity.
Stars: ✭ 219 (-92.22%)
Mutual labels:  unity, unity3d
Fluent State Machine
Fluent API for creating state machines in C#
Stars: ✭ 195 (-93.07%)
Mutual labels:  unity, unity3d
Delight
Delight is an open source component-oriented framework for Unity.
Stars: ✭ 201 (-92.86%)
Mutual labels:  unity, unity3d
Ez Camera Shake Unity
A free powerful asset for achieving easy and quality camera shake in Unity. Open-sourced with the permission of Road Turtle Games. 📷
Stars: ✭ 191 (-93.21%)
Mutual labels:  unity3d, camera
Lomenui
Stylish UI package for Unity engine.
Stars: ✭ 199 (-92.93%)
Mutual labels:  unity, unity3d
Shinyeffectforugui
Shiny effect of uGUI, which does not need mask or normal map.
Stars: ✭ 204 (-92.75%)
Mutual labels:  unity, unity3d
Vfxgraphtestbed
My testbed for Unity VFX Graph
Stars: ✭ 209 (-92.58%)
Mutual labels:  unity, unity3d

MathUtilities

A grab bag of some of the neat math and physics tricks that I've amassed over the last few years, implemented in Unity's C#. You're free to use the code here however you like.

Generalized Mesh Deformation

An extremely fast, general mesh-deformation algorithm with arbitrary point-placement and configurable rigidity. Has the desirable property that it acts like a rigid Kabsch when the "weight" (ductility) is set to 0, but smoothly blends in deformation as the weight is increased.

The implementation is similar to Linear Blend Skinning, but the skinning weights are automatically calculated with Inverse Distance Weighting (in cartesian or surface space), and the "bone rotations" are calculated to optimally preserve the angular relationships between the control points.

Signed Distance Field Texture Rendering

A simple example for raymarching and painting/blitting-to volumetric distance field textures. Distance Fields are regions of space that store the distance to the nearest surface at each point in space. This property allows them to represent and render solid shapes of arbitrary geometry and topology.

This particular implementation also stores the normalized vector toward the nearest point (the normal or gradient of the field). This is useful for physics queries and lighting (without taking the numerical derivative).

Kabsch

Also known as Procrustes Analysis, this algorithm can take in an arbitrary set of point-pairs and find the globally optimal rigid translation and rotation to minimize the distance between those point pairs. Incredibly useful, and very cheap. Uses Matthias Muller's polar decomposition solver in place of SVD, as outlined here: https://animation.rwth-aachen.de/media/papers/2016-MIG-StableRotation.pdf

Update: Added an example for averaging arbitrary numbers of quaternions; possibly more accurate than a normalized lerp (averaging the quaternion components in linear space and then normalizing).

Least Squares Line/Plane Fitting [Pic]

A generic helper utility for fitting lines and planes to point-sets in 3D. Uses a novel* matrix-less formulation to solve for the orthogonal lines and planes of best fit; algorithm is without singularities and is extensible to arbitrary dimensionality.

*(as far as I know; I have not seen anyone attempt orthogonal regression without using an SVD (which may be unnecessarily expensive for just the line/plane of best fit))

Stereographic/Fisheye Camera [Wiki]

A prefab that concatenates and warps the images from four cameras into one 180 degree fisheye view, projected stereographically.

Verlet Softbody, Rigidbody, and Chain

Numerous examples of using verlet integration (a subset of Position Based Dynamics) to simulate soft/rigid bodies, cloth, and particle linkage chains.

Kalman Filter [Wiki]

A textbook implementation of a Kalman filter (transcribed from wikipedia) Kalman filters are a form of bayesian filtering; they are capable of taking in information from multiple sources and "fusing" them into a signal that is cleaner/more accurate than any of the constituent signals. A properly tuned Kalman filter is the mathematically "optimal" technique for turning noisy data into clean data in real time (as long as the noise follows a gaussian distribution and the data varies linearly). In practice one must deal with biases and non-linearly varying quantities.

Constraints/Inverse Kinematics

A set of constraint functions that can be used to build an iterative inverse kinematics solver.

Nice introductory Tutorial to the concept behind CCDIK and the Kinematic Jacobian

Inverse-Kinematics: CCDIK Illustration vs FABRIK Illustration

Robotic Configuration Space Visualization [Pic] and Collision-Aware IK [Gif]

The "Configuration Space" can be visualized by graphing the penetration of a robot with it's environment (and itself) as a distance field, where each axis is the angle/configuration of an individual joint. By path finding through valid regions in this space, one is actually planning the motion of the robot from one configuration to another. The gradient of the configuration space can also be used for light depenetration of the robot from invalid configurations. However, because precomputing the configuration space is slow (and must be redone for objects in the environment), I developed a variant of CCDIK (CCCDIK :) ) which iteratively depenetrates itself from the environment by temporarily treating the contact point as a new end-effector.

Other experiments:

Nelder-Mead (Amoeba) Numerical Optimizer [Wiki]

A general, n-dimensional implementation of Nelder and Mead's gradient-less numerical optimization method for minimizing cost functions. This is a popular optimization technique for problems with high-dimensionality and no gradient information. Included is an example of optimizing a 5-DoF IK system (far less efficient than CCDIK, but more flexible overall). Also contains a numerical gradient descent optimizer for comparison.

Linear Assignment

A port of Roy Jonker's famous solution to the Linear Assignment Problem. Allows you to take two arbitrary lists of objects (with a cost to pair objects in each of them to each other), and to find the globally optimal pairing betweeing objects in these lists. Extremely handy.

See the source file for Commercial Licensing Details.

Linear Blend Skinning

A reference implementation that demonstrates how to apply bone motions to a model using the data contained within a skinned mesh renderer. As they say, there is more than one way to skin a mesh.

Per-Pixel Texture Reprojection

Demonstrates how to set up a shader to project a texture onto scene geometry using a (disabled) camera as the projector frustum. Useful for illusions.

Quasirandom Point Generation

Contains a class for generating a near-uniform quasirandom distribution of points for arbitrary dimensionality and point counts. Based off of the article here: http://extremelearning.com.au/unreasonable-effectiveness-of-quasirandom-sequences/

Distance Field Particle Displacement [Gif]

Shows an interesting technique for displacing particles to flow around distance fields (would work very well in UE4's Niagara).

Minkowski Difference Visualizer

Uses a compute shader to draw arbitrary 2D Minkowski "Differences" in real time. The Minkowski Sum (and its modification, the "Minkowski Difference") is a core operation in collision detection. This concept allows for a fully generalized way of determining whether any two objects are intersecting, and what the minimum translation is that separates them. The key is determining whether the origin (of the coordinate system used in the operation) is inside of the resulting Minkowski Difference shape. GJK is a collision detection technique that implements this check quickly for convex objects, with only a few samples of the implicit Minkowski Difference.

Bidirectional Raycasting

Operates like a standard raycast, but returns both entry and exit information. Useful for building wires that wrap around the environment and bullet entry/exit effects.

Bang-Bang Kinetic Time-Optimal Movement Controller [Gif]

A special heuristic formula to compute the time-optimal movement trajectory for a double-integrating mass with limited thrust.

Formula taken from this excellent course: http://underactuated.csail.mit.edu/underactuated.html?chapter=9

Bézier Trajectory Deformation

This is a technique for augmenting the end-point of trajectories composed of discrete segments, using a rigid-as-possible/"Blossoming" (Bézier-like) interpolation scheme. Includes an implementation for both 3D and 6D trajectories.

Inspired by this paper: https://april.eecs.umich.edu/media/pdfs/olson2006icra.pdf

Rigid Transform Pivot Point [Gif]

What appears to be a unique geometric solution for calculating the pivot point of a rigid transformation in 2D and 3D (where applicable). Is computationally efficient, geometrically intuitive, and can be extended to arbitrary dimensions.

Weighted Average Smoothing Spline [Gif]

An example demonstrating how using a sliding window weighted average can yield a continuous smoothing spline for noisy 6 DoF data.

Thick Tesellated Plane Generator

Useful for generating solid meshes that are essentially deformed planes (shapes that are common in free-form optics).

Capsule Mesh Generator [Shadertoy]

Useful for generating capsule meshes with an arbitrary length and radius.

Raytraced Sphere

A little shader that raytraces a pixel-perfect sphere on your object/billboard, for when you want to be pixel-bound rather than vertex bound...

Also contains a small demo for finding tangential points to circles and spheres.

Runtime .json GameObject Serialization

A serialization utility that smartly serializes and deserializes game object hierarchies, engine components, monobehaviours, references, and more at runtime using reflection. Useful for a save/load system or a runtime editor.

Matrix Class

A generic matrix class and a set of basic matrix operations (multiplication, addition, subtraction, inversion, cholesky decomposition, and more). Written to support the implementation of the Kalman Filter. Usage of any of these operations will allocate a new array (garbage), so be careful about using this on performance constrained systems.

Haptic Probe [Gif]

An example implementing a haptic probe, where the force on the effector of the haptic controller is equal to the linear and angular displacement of the green cube to the gray one.

Bundle Adjustment [Gif]

My attempts at implementing Bundle Adjustment (an algorithm which attempts to solve for the relative motion between two camera images, given the motion of a set of feature-points between the images). The stereo-case now converges to a unique 6-DoF pose (in most situations). This implementation is highly parallelizable.

Torque Extension for HingeJoints

This adds a function to apply torque "through" HingeJoints and to Rigidbodies in general.

n-Torus Encoding

An untested function for encoding an n-dimensional vector to the surface of an n+1 dimensional torus. Originally intended to allow Neural Networks to learn continuous cyclic functions without ballooning the dimensionality to 2n (ie trivial x -> (sin(x), cos(x)) case).

Acceleration Dampened Rigidbodies

Attempts to simulate soft-spongy contact by damping the accelerations that are be applied to an object. Phenomena like friction cause it to exhibit strange artifacts...

2D Platforming Character

Uses a neat trick where, if the anchor of a spring joint is moved, both connected rigidbodies are physically affected. This allows one to easily simulate "muscles".

Rolling Cubes

Fun for the whole family!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].