Skip to content
Snippets Groups Projects
Select Git revision
  • 89120e2018c6af4a01c9e71f28b1389f41fb23ec
  • master default
  • dependabot/nuget/source/Sample/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/MasterDevs.ChromeDevTools.Tests/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ProtocolGenerator/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/System.Net.Http-4.3.4
  • revert-29-revert-24-protocol_62
  • revert-24-protocol_62
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0.40915
13 results

App.config

Blame
  • Fact.cs 675 B
    using UnityEngine;
    
    public abstract class Fact
    {
        public int Id;
        public GameObject Representation;
    
    }
    //I am not sure if we ever need to attach these to an object, so one script for all for now...
    public class PointFact : Fact
    {
        public Vector3 Point;
        public Vector3 Normal;
    }
    public class LineFact : Fact
    {
        //Id's of the 2 Point-Facts that are connected
        public int Pid1, Pid2;
        
    }
    public class AngleFact : Fact
    {
        //Id's of the 3 Point-Facts, where Pid2 is the point, where the angle is
        public int Pid1, Pid2, Pid3;
    }
    public class OnLineFact : Fact
    {
        //Id's of the 3 Point-Facs that are on one line
        public int Pid1, Pid2, Pid3;
    }