Commit e5edfd3e authored by 谢旭's avatar 谢旭

完成距离显示

parent 003f813e
No preview for this file type
...@@ -23,6 +23,7 @@ namespace CefDemo.Controllers ...@@ -23,6 +23,7 @@ namespace CefDemo.Controllers
{ {
CalculateModel.SaveModel(model); CalculateModel.SaveModel(model);
CalculateModel.issetValue = true;
return "ok"; return "ok";
} }
// PUT api // PUT api
......
...@@ -13,10 +13,11 @@ namespace CefDemo.Extension ...@@ -13,10 +13,11 @@ namespace CefDemo.Extension
class CalculateModel class CalculateModel
{ {
static public List<Point> points = new List<Point>(); static public List<Point> points ;
static public Point Center ; static public Point Center ;
static public FenceModel Model; static public FenceModel Model;
static public bool issetValue =false;
public static bool IsSamePoint(Point p1,Point p2) public static bool IsSamePoint(Point p1,Point p2)
{ {
...@@ -43,7 +44,7 @@ namespace CefDemo.Extension ...@@ -43,7 +44,7 @@ namespace CefDemo.Extension
public static bool IsinPolyhedron(Point point ,List<Point> points,double Height) public static bool IsinPolyhedron(Point point ,List<Point> points,double Height)
{ {
int nCross = 0; int nCross = 0;
for (int i=0;i< points.Count();i++) for (int i=0;i< points.Count()-1;i++)
{ {
Point p1 = points.ElementAt(i); Point p1 = points.ElementAt(i);
Point p2 = points.ElementAt(i+1); Point p2 = points.ElementAt(i+1);
...@@ -93,7 +94,7 @@ namespace CefDemo.Extension ...@@ -93,7 +94,7 @@ namespace CefDemo.Extension
//计算点到面的距离 //计算点到面的距离
Vec3 B2point = new Vec3(firstPoint.X - point.X, firstPoint.Y - point.Y, firstPoint.Z - point.Z); Vec3 B2point = new Vec3(firstPoint.X - point.X, firstPoint.Y - point.Y, firstPoint.Z - point.Z);
double number_up = B2point.X * n.X + B2point.Y * n.Y + B2point.Z * n.Z; double number_up =Math.Abs( B2point.X * n.X + B2point.Y * n.Y + B2point.Z * n.Z);
double number_down = Math.Sqrt(n.X * n.X + n.Y * n.Y + n.Z * n.Z); double number_down = Math.Sqrt(n.X * n.X + n.Y * n.Y + n.Z * n.Z);
double d = number_up / number_down; double d = number_up / number_down;
numlist.Add(d); numlist.Add(d);
...@@ -130,14 +131,16 @@ namespace CefDemo.Extension ...@@ -130,14 +131,16 @@ namespace CefDemo.Extension
} }
else if( dis < Buffer_dis) else if( dis < Buffer_dis)
{ {
return $"距离电子围栏{dis}米"; var showdis = dis.ToString().Substring(0,5);
return $"距离电子围栏{showdis}米";
} }
} }
else else
{ {
//在围栏外 //在围栏外
var dis = PointToPlane(points, point, Height, Buffer_dis); var dis = PointToPlane(points, point, Height, Buffer_dis);
return $"超出电子围栏{dis}米"; var showdis = dis.ToShort();
return $"超出电子围栏{showdis}米";
} }
return ""; return "";
...@@ -179,12 +182,12 @@ namespace CefDemo.Extension ...@@ -179,12 +182,12 @@ namespace CefDemo.Extension
{ {
//缓冲区内 //缓冲区内
double _dis_R = Radius - _distance; double _dis_R = Radius - _distance;
return $"距离电子围栏{_dis_R}"; return $"距离电子围栏{_dis_R.ToShort()}";
} }
else if (_distance >= Radius) else if (_distance >= Radius)
{ {
//在球外 //在球外
return $"超出电子围栏{ _distance-Radius }"; return $"超出电子围栏{( _distance-Radius ).ToShort()}";
} }
return ""; return "";
} }
...@@ -220,11 +223,13 @@ namespace CefDemo.Extension ...@@ -220,11 +223,13 @@ namespace CefDemo.Extension
} }
else if (point.Z >= Height - Buffer_dis && point.Z < Height) else if (point.Z >= Height - Buffer_dis && point.Z < Height)
{ {
return $"超出缓冲区{point.Z - (Height - Buffer_dis)}米"; var showdis =( point.Z - (Height - Buffer_dis)).ToString().Substring(0,5);
return $"超出缓冲区{showdis}米";
} }
else if (point.Z>= Height) else if (point.Z>= Height)
{ {
return $"超出缓冲区{point.Z - (Height - Buffer_dis)}米,超出电子围栏{point.Z-Height}米"; var showdis = (point.Z - (Height - Buffer_dis)).ToShort();
return $"超出缓冲区{showdis}米,超出电子围栏{point.Z-Height}米";
} }
} }
...@@ -239,14 +244,14 @@ namespace CefDemo.Extension ...@@ -239,14 +244,14 @@ namespace CefDemo.Extension
if (_dis_height < 0) if (_dis_height < 0)
{ {
//高度没有超过 //高度没有超过
return $"距离电子围栏{_dis}米"; return $"距离电子围栏{_dis.ToShort()}米";
} }
else if (_dis_Height < 0 && _dis_height >= 0) else if (_dis_Height < 0 && _dis_height >= 0)
{ {
//缓冲区内 //缓冲区内
if (_dis >= Height - point.Z) if (_dis >= Height - point.Z)
{ {
return $"距离电子围栏{Height - point.Z}米"; return $"距离电子围栏{(Height - point.Z).ToShort()}米";
} }
else else
{ {
...@@ -256,10 +261,10 @@ namespace CefDemo.Extension ...@@ -256,10 +261,10 @@ namespace CefDemo.Extension
else if(_dis_Height >= 0) else if(_dis_Height >= 0)
{ {
return $"距离电子围栏{point.Z-Height }米"; return $"距离电子围栏{(point.Z-Height).ToShort() }米";
} }
return $"超出缓冲区{_dis}米"; return $"超出缓冲区{_dis.ToShort()}米";
} }
else if (_distance >= Radius) else if (_distance >= Radius)
...@@ -273,16 +278,16 @@ namespace CefDemo.Extension ...@@ -273,16 +278,16 @@ namespace CefDemo.Extension
{ {
if (_dis_Height >= _dis_R) if (_dis_Height >= _dis_R)
{ {
return $"超出电子围栏{_dis_R}米"; return $"超出电子围栏{_dis_R.ToShort()}米";
} }
else else
{ {
return $"超出电子围栏{_dis_Height}米"; return $"超出电子围栏{_dis_Height.ToShort()}米";
} }
} }
else else
{ {
return $"超出电子围栏{_dis_R}米"; return $"超出电子围栏{_dis_R.ToShort()}米";
} }
} }
...@@ -305,12 +310,14 @@ namespace CefDemo.Extension ...@@ -305,12 +310,14 @@ namespace CefDemo.Extension
{ {
if (model.FenceType == "polygon") if (model.FenceType == "polygon")
{ {
string pointsstr = model.points; string pointsstr = model.points;
var list = JsonConvert.DeserializeObject<List<DataModel>>(pointsstr); var list = JsonConvert.DeserializeObject<List<DataModel>>(pointsstr);
points = new List<Point>();
list.ForEach(p => { list.ForEach(p => {
points.Add(new Point(p.longitude, p.latitude, p.height)); points.Add(new Point(p.longitude, p.latitude, p.height));
}); });
points.Add(new Point(list.ElementAt(0).longitude, list.ElementAt(0).latitude, list.ElementAt(0).height));
} }
else if (model.FenceType == "sphere") else if (model.FenceType == "sphere")
{ {
...@@ -331,21 +338,42 @@ namespace CefDemo.Extension ...@@ -331,21 +338,42 @@ namespace CefDemo.Extension
public static string GetWarningInfo(Point point) public static string GetWarningInfo(Point point)
{ {
if (Model == null)
return "0.0";
if (Model.FenceType == "polygon") //多边体 if (Model.FenceType == "polygon") //多边体
{
if (points == null && issetValue ==true)
{
return "0.0";
}
else
{ {
return DistanceToPolyhedron(points, point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis)); return DistanceToPolyhedron(points, point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis));
} }
}
else if (Model.FenceType == "circle")//圆柱体 else if (Model.FenceType == "circle")//圆柱体
{ {
if (Center == null && issetValue == true)
{
return "0.0";
}
else
{ return DistanceToCylinder(Center, Convert.ToSingle(Model.Radius), point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis)); }
return DistanceToCylinder(Center, Convert.ToSingle(Model.Radius), point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis));
} }
else if (Model.FenceType == "sphere")//球体 else if (Model.FenceType == "sphere")//球体
{
if (Center == null && issetValue == true)
{
return "0.0";
}
else
{ {
return DistanceToSphere(point, Center, Convert.ToSingle(Model.Radius), Convert.ToSingle(Model.Buffer_dis)); return DistanceToSphere(point, Center, Convert.ToSingle(Model.Radius), Convert.ToSingle(Model.Buffer_dis));
}
} }
...@@ -353,5 +381,7 @@ namespace CefDemo.Extension ...@@ -353,5 +381,7 @@ namespace CefDemo.Extension
} }
} }
} }
...@@ -23,5 +23,12 @@ namespace CefDemo.Extension ...@@ -23,5 +23,12 @@ namespace CefDemo.Extension
return reuslt; return reuslt;
} }
public static string ToShort(this double num)
{
return num.ToString().Substring(0,5);
}
} }
} }
...@@ -134,6 +134,11 @@ namespace CefDemo ...@@ -134,6 +134,11 @@ namespace CefDemo
string longitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Value.ToString(); string longitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Value.ToString();
string latitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Key.ToString(); string latitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Key.ToString();
string alitude = "50.32"; string alitude = "50.32";
string distance = CalculateModel.GetWarningInfo(new Point(Convert.ToSingle(longitude),
Convert.ToSingle(latitude),
Convert.ToSingle(alitude)
));
string sendMessage = "" + string sendMessage = "" +
"{\"deviceType\":\"RTK\"" + "{\"deviceType\":\"RTK\"" +
",\"SICVersion\":\"SIC_1.2\"" + ",\"SICVersion\":\"SIC_1.2\"" +
...@@ -150,10 +155,9 @@ namespace CefDemo ...@@ -150,10 +155,9 @@ namespace CefDemo
",\"deviceBrand\":\"SOUTH\"" + ",\"deviceBrand\":\"SOUTH\"" +
",\"receivetime\":\"20200630153620\"" + ",\"receivetime\":\"20200630153620\"" +
",\"longitude\":" + longitude + // ",\"longitude\":" + longitude + //
",\"WarningInfo\":" + CalculateModel.GetWarningInfo(new Point(Convert.ToSingle(longitude), ",\"WarningInfo\":" +"\""+ distance + "\"" +
Convert.ToSingle(latitude),
Convert.ToSingle(alitude) //",\"WarningInfo\":\"20200630153620\"" +
)) +
"}"; "}";
if (i==10000000) if (i==10000000)
{ {
...@@ -161,7 +165,7 @@ namespace CefDemo ...@@ -161,7 +165,7 @@ namespace CefDemo
} }
buffer = Encoding.UTF8.GetBytes(sendMessage); buffer = Encoding.UTF8.GetBytes(sendMessage);
await sendAsync(new ArraySegment<byte>(buffer, 0, buffer.Count()), 1, true, callCancelled); await sendAsync(new ArraySegment<byte>(buffer, 0, buffer.Count()), 1, true, callCancelled);
await Task.Delay(2000); await Task.Delay(5000);
} }
......
...@@ -7694,3 +7694,669 @@ C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, us ...@@ -7694,3 +7694,669 @@ C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, us
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155739.569:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/155740.625:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/155742.420:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155743.111:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155743.232:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155743.441:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155743.641:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155743.790:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155800.654:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/155836.516:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/160908.581:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/160911.402:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/160913.773:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/160922.606:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/160922.867:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/160923.046:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/160953.356:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/161000.535:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/161044.484:INFO:CONSOLE(1)] "ERROR TypeError: Cannot read property 'getGeometryInstanceAttributes' of undefined", source: http://localhost:12345/electircfence/main.ab80c7291b04b69861ec.js (1)
[0702/161900.636:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/161901.369:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/161903.192:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/161909.085:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/161909.273:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/161909.402:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/161909.576:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162304.195:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162307.482:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162309.373:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162312.495:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162312.742:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162327.848:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162329.710:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162331.804:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162341.461:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162341.649:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162341.835:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162403.308:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162452.407:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162454.563:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162456.843:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162457.171:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162457.439:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162457.640:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162457.876:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162744.978:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162746.353:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/162748.599:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162800.854:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162801.053:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162801.242:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162801.438:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162801.593:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162820.822:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/162900.375:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163631.602:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/163632.367:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/163634.036:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163634.136:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163636.803:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163637.004:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163637.161:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163637.332:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163637.485:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163652.099:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163652.141:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163737.194:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/163739.424:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/163741.114:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163745.343:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163745.568:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163745.765:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163745.942:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163751.175:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163812.977:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163920.026:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/163921.187:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/163922.990:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163923.706:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163923.914:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163924.069:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163924.296:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163925.554:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163927.061:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/163927.214:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164355.046:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/164357.399:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/164359.358:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164359.828:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164400.017:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164400.373:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164400.681:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164401.682:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164420.422:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164424.040:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164621.624:INFO:CONSOLE(1)] "ERROR SyntaxError: Unexpected token 瓒 in JSON at position 350", source: http://localhost:12345/electircfence/main.ab80c7291b04b69861ec.js (1)
[0702/164935.776:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/164938.041:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/164941.059:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164944.368:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164944.728:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/164959.842:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165002.004:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165009.318:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165013.978:INFO:CONSOLE(1)] "ERROR SyntaxError: Unexpected token 瓒 in JSON at position 350", source: http://localhost:12345/electircfence/main.ab80c7291b04b69861ec.js (1)
[0702/165144.300:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/165146.483:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/165149.142:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165154.284:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165154.474:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165154.654:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165154.911:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165202.654:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165353.506:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/165355.603:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/165358.157:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165359.602:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165359.812:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165400.092:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165400.563:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165420.735:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165431.546:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/165431.592:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170054.716:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/170056.776:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/170100.053:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170100.571:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170100.790:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170101.043:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170101.346:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170104.215:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170107.037:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/170110.145:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171238.828:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/171240.931:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/171243.456:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171243.947:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171244.199:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171254.464:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171254.812:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171258.357:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171301.713:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171308.423:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/171544.720:INFO:CONSOLE(1)] "ERROR TypeError: Cannot read property 'getGeometryInstanceAttributes' of undefined", source: http://localhost:12345/electircfence/main.ab80c7291b04b69861ec.js (1)
[0702/171655.471:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173159.424:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/173201.546:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/173204.753:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173220.776:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173221.081:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173221.383:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173418.947:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/173423.099:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/173425.476:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173438.538:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173438.779:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173439.059:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173439.648:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173451.374:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/173458.589:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174043.909:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/174046.286:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/174049.404:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174055.619:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174056.002:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174103.920:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174106.048:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174912.287:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/174914.137:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/174916.751:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174919.141:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174919.406:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174919.686:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174919.982:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174931.688:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/174945.032:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175159.177:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175201.614:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175204.086:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175205.116:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175205.354:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175205.665:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175205.974:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175206.259:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175240.853:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175454.381:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175455.912:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175458.525:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175459.834:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175500.079:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175500.372:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175500.738:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175524.919:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175622.834:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175624.438:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175627.293:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175631.667:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175631.918:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175632.202:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175704.918:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175912.123:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175914.430:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/175916.626:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175917.083:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175917.287:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175917.638:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175918.069:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175918.771:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175942.984:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/175943.042:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180214.997:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/180216.960:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/180219.179:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180226.701:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180226.970:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180234.573:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180236.122:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180247.914:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180756.442:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/180759.224:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/180801.537:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180806.878:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180807.235:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180901.254:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180905.363:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180912.725:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/180955.420:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/181749.662:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/181751.049:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/181753.369:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/181800.786:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/181801.078:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/181801.310:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/181814.228:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/181821.675:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
...@@ -391,3 +391,4 @@ C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\obj\x64\Debug\View\ConHardwa ...@@ -391,3 +391,4 @@ C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\obj\x64\Debug\View\ConHardwa
C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\bin\x64\Debug\System.Web.Cors.dll C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\bin\x64\Debug\System.Web.Cors.dll
C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\bin\x64\Debug\System.Web.Http.Cors.dll C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\bin\x64\Debug\System.Web.Http.Cors.dll
C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\bin\x64\Debug\System.Web.Http.Cors.xml C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\bin\x64\Debug\System.Web.Http.Cors.xml
C:\Users\captain.eugene\Desktop\CefDemo (2)\CefDemo\obj\x64\Debug\CefDemo.csprojAssemblyReference.cache
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