Go to the documentation of this file.00001 package edu.tum.cs.ias.knowrob.util.datastructures;
00002
00003 @Deprecated
00004 public class Point {
00005 public float x;
00006 public float y;
00007 public float z;
00008 public float episode_nr;
00009 public float time;
00010 public float color;
00011 public String name;
00012 public String action = null;
00013
00014 public Point(float xx, float yy, float zz, float epsd_nr, float ntime, String nname){
00015 x = xx;
00016 y = yy;
00017 z = zz;
00018 episode_nr = epsd_nr;
00019 time = ntime;
00020 name = nname;
00021 action="";
00022 color=1.0f;
00023 }
00024
00025 public Point(float xx, float yy, float zz, float epsd_nr, float ntime, String nname, String naction){
00026 x = xx;
00027 y = yy;
00028 z = zz;
00029 episode_nr = epsd_nr;
00030 time = ntime;
00031 name = nname;
00032 action = naction;
00033 color=1.0f;
00034 }
00035
00036 public Point(float xx, float yy, float zz, float color, float epsd_nr, float ntime, String nname, String naction){
00037 x = xx;
00038 y = yy;
00039 z = zz;
00040 episode_nr = epsd_nr;
00041 time = ntime;
00042 name = nname;
00043 action = naction;
00044 color=1.0f;
00045 }
00046
00047 public Point(){
00048 x = 0;
00049 y = 0;
00050 z = 0;
00051 episode_nr = 0;
00052 color=1.0f;
00053 time = 0;
00054 name = null;
00055 action = null;
00056 }
00057 }