public HistogramDistanceTracker(
     string path,
     Assets.VirtualProfiler.GlobalConfiguration config,
     Transform targetA,
     Transform targetB)
     : base(path, config, new Color(0, 1, 0, 1))
 {
     _targetA = targetA;
     _targetB = targetB;
     HistogramRenderer.FilePrefix = "DISTANCE";
 }
        public HistogramRenderer(string path, Assets.VirtualProfiler.GlobalConfiguration config, Color color)
        {
            _color = color;
            _config = config;
            _path = path + "/Histograms";
            if (!Directory.Exists (_path)) {
                Directory.CreateDirectory (_path);
            }

            CreateBuffer ();
        }
 public HistogramOrientationTracker(
     string path,
     Assets.VirtualProfiler.GlobalConfiguration config,
     Transform targetA,
     Transform targetB)
     : base(path, config, new Color(0, 0, 1, 1))
 {
     _targetA = targetA;
     _targetB = targetB;
     HistogramRenderer.FilePrefix = "ORIENTATION";
 }
        public HistogramRenderer(string path, Assets.VirtualProfiler.GlobalConfiguration config, Color color)
        {
            _color  = color;
            _config = config;
            _path   = path + "/Histograms";
            if (!Directory.Exists(_path))
            {
                Directory.CreateDirectory(_path);
            }

            CreateBuffer();
        }
 public AbstractHistogramTracker(string path, Assets.VirtualProfiler.GlobalConfiguration config, Color color)
 {
     _config = config;
     _histogramRenderer = new HistogramRenderer (path, config, color);
 }
 public AbstractHistogramTracker(string path, Assets.VirtualProfiler.GlobalConfiguration config, Color color)
 {
     _config            = config;
     _histogramRenderer = new HistogramRenderer(path, config, color);
 }
Example #7
0
 public HistogramTracker(Transform target, string path, Assets.VirtualProfiler.GlobalConfiguration config)
     : base(path, config, new Color(1, 0, 0, 1))
 {
     _target = target;
     HistogramRenderer.FilePrefix = "VELOCITY";
 }