Commit 746a831e authored by 16이진형's avatar 16이진형

change movement hierarchy

parent a4c8db3e
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using MathNet.Numerics.LinearAlgebra;
using MathNet.Numerics.LinearAlgebra.Double;
public class FlatlandMovement : MonoBehaviour
{
protected bool toggle = false;
protected bool grabbed = false;
protected int cnt = 0;
protected double beta = 0.5f; // v/c
public Vector3 alpha = new Vector3(0.1f, 0.0f, 0.0f); // proper acceleration
public Vector3 v;
public Vector3 orientation;
public LevelManager Levelmanager;
public double gamma = 1.0f;
public double time = 0.0f;
// Start is called before the first frame update
public GameObject theobject;
protected MatrixBuilder<double> M = Matrix<double>.Build;
protected VectorBuilder<double> V = Vector<double>.Build;
}
fileFormatVersion: 2
guid: 697161109c6537740a60e20ba02dbdf9
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -4,30 +4,11 @@ using UnityEngine;
using MathNet.Numerics.LinearAlgebra;
using MathNet.Numerics.LinearAlgebra.Double;
public class Planemovement : MonoBehaviour
public class Planemovement : FlatlandMovement
{
bool toggle = false;
bool grabbed = false;
int cnt = 0;
double beta = 0.5f; // v/c
Vector3 alpha = new Vector3(0.1f, 0.0f, 0.0f); // proper acceleration
Vector3 v;
public LevelManager Levelmanager;
public double starttime = 0.0f;
public double gamma = 1.0f;
Vector3 orientation;
double time = 0.0f;
// Start is called before the first frame update
public GameObject theobject;
public Planemovement otherclock;
MatrixBuilder<double> M = Matrix<double>.Build;
VectorBuilder<double> V = Vector<double>.Build;
void Start()
{
//Renderer r = theobject.GetComponent<Renderer>();
......
......@@ -4,22 +4,10 @@ using UnityEngine;
using MathNet.Numerics.LinearAlgebra;
using MathNet.Numerics.LinearAlgebra.Double;
public class PlayerMovement : MonoBehaviour
public class PlayerMovement : FlatlandMovement
{
//int cnt = 0;
double beta = 0.5f; // v/c
public Vector3 alpha = new Vector3(0.0f, 0.0f, 0.0f); // proper acceleration
public Vector3 v = new Vector3(0.0f, 0.0f, 0.0f);
public double gamma = 1.0f;
public GameObject theobject;
public Vector3 orientation = new Vector3(0.0f, 0.0f, 0.0f);
public double time = 0.0f;
MatrixBuilder<double> M = Matrix<double>.Build;
VectorBuilder<double> V = Vector<double>.Build;
bool isinertial = true;
int cnt = 0;
// Start is called before the first frame update
void Start()
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment