Skip to content

Commit

Permalink
pull request wellenvogel#354 from original added
Browse files Browse the repository at this point in the history
  • Loading branch information
kdschmidt1 committed Oct 16, 2024
1 parent 53c1ea0 commit 98e3360
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,3 @@ windows/**/AvChartConvert.v12.suo
windows/installer/Output
windows/installer/library
android/assets/sounds/**
/.pydevproject
8 changes: 8 additions & 0 deletions .pydevproject
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project>

<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>

<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property>

</pydev_project>
2 changes: 1 addition & 1 deletion viewer/util/formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const formatDirection=function(dir,opt_rad,opt_180){
return formatDecimal(dir,3,0);
};
formatDirection.parameters=[ {name:'inputRadian',type:'BOOLEAN',default:false},
{name:'range180',type:'BOOLEAN',default:false}
{name:'±180°',type:'BOOLEAN',default:false}
];

/**
Expand Down
2 changes: 1 addition & 1 deletion viewer/util/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Helper.to360=(a)=>{
};

Helper.to180=(a)=>{
return to360(a+180)-180;
return Helper.to360(a+180)-180;
};

Helper.radians=(a)=>{
Expand Down

0 comments on commit 98e3360

Please sign in to comment.