From dbcd0c269014100b7d4cc421c5ab518f275cca09 Mon Sep 17 00:00:00 2001 From: chai <chaifix@163.com> Date: Thu, 24 Jun 2021 19:55:26 +0800 Subject: *misc --- Assets/Algorithms/Algebra/Linear.cs | 13 ++++--------- Assets/Algorithms/Algebra/MatrixUtils.cs | 13 +++++++++++++ Assets/Algorithms/Algebra/MatrixUtils.cs.meta | 11 +++++++++++ Assets/Algorithms/Algebra/Vector3Utils.cs | 13 +++++++++++++ Assets/Algorithms/Algebra/Vector3Utils.cs.meta | 11 +++++++++++ 5 files changed, 52 insertions(+), 9 deletions(-) create mode 100644 Assets/Algorithms/Algebra/MatrixUtils.cs create mode 100644 Assets/Algorithms/Algebra/MatrixUtils.cs.meta create mode 100644 Assets/Algorithms/Algebra/Vector3Utils.cs create mode 100644 Assets/Algorithms/Algebra/Vector3Utils.cs.meta (limited to 'Assets/Algorithms/Algebra') diff --git a/Assets/Algorithms/Algebra/Linear.cs b/Assets/Algorithms/Algebra/Linear.cs index 5448b50..29584ce 100644 --- a/Assets/Algorithms/Algebra/Linear.cs +++ b/Assets/Algorithms/Algebra/Linear.cs @@ -2,17 +2,12 @@ using System.Collections.Generic; using UnityEngine; -public class Linear : MonoBehaviour + +namespace AlgorithmCollection.Algebra { - // Start is called before the first frame update - void Start() + public static class Linear { - - } - // Update is called once per frame - void Update() - { - + } } diff --git a/Assets/Algorithms/Algebra/MatrixUtils.cs b/Assets/Algorithms/Algebra/MatrixUtils.cs new file mode 100644 index 0000000..84c12c3 --- /dev/null +++ b/Assets/Algorithms/Algebra/MatrixUtils.cs @@ -0,0 +1,13 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + + +namespace AlgorithmCollection.Algebra +{ + public static class MatrixUtils + { + + + } +} diff --git a/Assets/Algorithms/Algebra/MatrixUtils.cs.meta b/Assets/Algorithms/Algebra/MatrixUtils.cs.meta new file mode 100644 index 0000000..1ac378e --- /dev/null +++ b/Assets/Algorithms/Algebra/MatrixUtils.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bb506f4381cf42643a1d968c52ec0bae +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Algorithms/Algebra/Vector3Utils.cs b/Assets/Algorithms/Algebra/Vector3Utils.cs new file mode 100644 index 0000000..d77030f --- /dev/null +++ b/Assets/Algorithms/Algebra/Vector3Utils.cs @@ -0,0 +1,13 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + + +namespace AlgorithmCollection.Algebra +{ + public static class Vector3Utils + { + + + } +} diff --git a/Assets/Algorithms/Algebra/Vector3Utils.cs.meta b/Assets/Algorithms/Algebra/Vector3Utils.cs.meta new file mode 100644 index 0000000..856cdea --- /dev/null +++ b/Assets/Algorithms/Algebra/Vector3Utils.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5550f49c26a0d8e4c8d014b7e7b530a5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: -- cgit v1.1-26-g67d0