Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
45cb473c
Commit
45cb473c
authored
Mar 04, 2017
by
Don Gagne
Committed by
GitHub
Mar 04, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4707 from DonLakeFlyer/FWLandingFixes
FixedWing Landing Pattern fixes
parents
549d095c
599421b9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
FWLandingPatternMapVisual.qml
src/MissionEditor/FWLandingPatternMapVisual.qml
+0
-1
FixedWingLandingComplexItem.cc
src/MissionManager/FixedWingLandingComplexItem.cc
+6
-1
ToolStrip.qml
src/QmlControls/ToolStrip.qml
+3
-2
No files found.
src/MissionEditor/FWLandingPatternMapVisual.qml
View file @
45cb473c
...
@@ -92,7 +92,6 @@ Item {
...
@@ -92,7 +92,6 @@ Item {
function
calcPointTangentToCircleWithCenter
()
{
function
calcPointTangentToCircleWithCenter
()
{
if
(
_missionItem
.
landingCoordSet
)
{
if
(
_missionItem
.
landingCoordSet
)
{
console
.
log
(
"
recalc
"
)
var
radius
=
_missionItem
.
loiterRadius
.
value
var
radius
=
_missionItem
.
loiterRadius
.
value
var
loiterPointPixels
=
map
.
fromCoordinate
(
_missionItem
.
loiterCoordinate
,
false
/* clipToViewport */
)
var
loiterPointPixels
=
map
.
fromCoordinate
(
_missionItem
.
loiterCoordinate
,
false
/* clipToViewport */
)
var
landPointPixels
=
map
.
fromCoordinate
(
_missionItem
.
landingCoordinate
,
false
/* clipToViewport */
)
var
landPointPixels
=
map
.
fromCoordinate
(
_missionItem
.
landingCoordinate
,
false
/* clipToViewport */
)
...
...
src/MissionManager/FixedWingLandingComplexItem.cc
View file @
45cb473c
...
@@ -227,10 +227,15 @@ void FixedWingLandingComplexItem::_recalcLoiterCoordFromFacts(void)
...
@@ -227,10 +227,15 @@ void FixedWingLandingComplexItem::_recalcLoiterCoordFromFacts(void)
convertGeoToNed
(
_landingCoordinate
,
tangentOrigin
,
&
north
,
&
east
,
&
down
);
convertGeoToNed
(
_landingCoordinate
,
tangentOrigin
,
&
north
,
&
east
,
&
down
);
// Heading is from loiter to land, so we need to rotate angle 180 degrees and go the opposite direction
double
heading
=
_landingHeadingFact
.
rawValue
().
toDouble
();
heading
+=
180.0
;
heading
*=
-
1.0
;
QPointF
originPoint
(
east
,
north
);
QPointF
originPoint
(
east
,
north
);
north
+=
_loiterToLandDistanceFact
.
rawValue
().
toDouble
();
north
+=
_loiterToLandDistanceFact
.
rawValue
().
toDouble
();
QPointF
loiterPoint
(
east
,
north
);
QPointF
loiterPoint
(
east
,
north
);
QPointF
rotatedLoiterPoint
=
_rotatePoint
(
loiterPoint
,
originPoint
,
_landingHeadingFact
.
rawValue
().
toDouble
()
);
QPointF
rotatedLoiterPoint
=
_rotatePoint
(
loiterPoint
,
originPoint
,
heading
);
convertNedToGeo
(
rotatedLoiterPoint
.
y
(),
rotatedLoiterPoint
.
x
(),
down
,
tangentOrigin
,
&
_loiterCoordinate
);
convertNedToGeo
(
rotatedLoiterPoint
.
y
(),
rotatedLoiterPoint
.
x
(),
down
,
tangentOrigin
,
&
_loiterCoordinate
);
...
...
src/QmlControls/ToolStrip.qml
View file @
45cb473c
...
@@ -79,8 +79,8 @@ Rectangle {
...
@@ -79,8 +79,8 @@ Rectangle {
dropButtonsExclusiveGroup
.
current
=
null
dropButtonsExclusiveGroup
.
current
=
null
// Signal all toggles as off
// Signal all toggles as off
for
(
var
i
=
0
;
i
<
model
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
model
.
length
;
i
++
)
{
if
(
model
[
i
].
toggle
Button
===
true
)
{
if
(
model
[
i
].
toggle
===
true
)
{
clicked
(
index
,
false
)
_root
.
clicked
(
i
,
false
)
}
}
}
}
}
}
...
@@ -198,6 +198,7 @@ Rectangle {
...
@@ -198,6 +198,7 @@ Rectangle {
dropPanel
.
hide
()
// hide affects checked, so this needs to be duplicated inside not outside if
dropPanel
.
hide
()
// hide affects checked, so this needs to be duplicated inside not outside if
}
else
{
}
else
{
dropPanel
.
hide
()
// hide affects checked, so this needs to be duplicated inside not outside if
dropPanel
.
hide
()
// hide affects checked, so this needs to be duplicated inside not outside if
uncheckAll
()
checked
=
true
checked
=
true
var
panelEdgeTopPoint
=
mapToItem
(
_root
,
width
,
0
)
var
panelEdgeTopPoint
=
mapToItem
(
_root
,
width
,
0
)
dropPanel
.
show
(
panelEdgeTopPoint
,
height
,
modelData
.
dropPanelComponent
)
dropPanel
.
show
(
panelEdgeTopPoint
,
height
,
modelData
.
dropPanelComponent
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment