@@ -38,7 +38,7 @@ class Rendering extends Component {
38
38
opacity : 0.5
39
39
} ) ;
40
40
this . egoVehicleMaterial = new THREE . MeshLambertMaterial ( {
41
- color : 0x00c851 ,
41
+ color : 0x129a7d ,
42
42
transparent : true ,
43
43
opacity : 0.3
44
44
} ) ;
@@ -76,8 +76,8 @@ class Rendering extends Component {
76
76
this . defaultCameraPerspective = 0 ;
77
77
this . currentCameraPerspective = this . defaultCameraPerspective ;
78
78
this . defaultColors = {
79
- Object : [ "#999999" , "#1890ff " , "#faad14 " , "#B22222 " ] ,
80
- Lane : [ "#ffc300 " , "#ff4400 " , "#00bcff " ]
79
+ Object : [ "#999999" , "#8ac0de " , "#e6b655 " , "#e58b88" , "#70ae98 "] ,
80
+ Lane : [ "#e6b655 " , "#e58b88 " , "#8ac0de" , "#70ae98 "]
81
81
} ;
82
82
this . sensorType = { Object : "object" , Lane : "lane" } ;
83
83
this . defaultSensor = {
@@ -609,7 +609,10 @@ class Rendering extends Component {
609
609
610
610
getLaneGeomFromClothoid = ( lane , detectedBy , pointsEgoFrame ) => {
611
611
const geometry = new THREE . Geometry ( ) ;
612
- const material = new THREE . LineBasicMaterial ( { color : this . laneColors [ detectedBy ] } ) ;
612
+ const material = new THREE . LineBasicMaterial ( {
613
+ color : this . laneColors [ detectedBy ] ,
614
+ linewidth : 2
615
+ } ) ;
613
616
const n = pointsEgoFrame . length ;
614
617
const lineLengthGT = pointsEgoFrame [ n - 1 ] . x - pointsEgoFrame [ 0 ] . x ;
615
618
if ( lineLengthGT < 0.01 ) {
0 commit comments