-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest_get_points.py
More file actions
84 lines (68 loc) · 2.11 KB
/
test_get_points.py
File metadata and controls
84 lines (68 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause
# (see plotpy/LICENSE for details)
"""
SelectPointTool test
This plotpy tool provide a MATLAB-like "ginput" feature.
"""
# guitest: show
from __future__ import annotations
from guidata.qthelpers import exec_dialog, qt_app_context
from numpy import linspace, sin
from plotpy.builder import make
from plotpy.config import _
from plotpy.tools import SelectPointsTool
def callback_function(tool: SelectPointsTool) -> None:
"""Callback function to be called by the tool after selection
Args:
tool: The tool instance that called the callback
"""
points = tool.get_coordinates()
print("Points : ", points)
def get_points(cdata: tuple[tuple[float, float], ...], max_select: int) -> None:
"""
Plot curves and return selected point(s) coordinates
Args:
cdata: A tuple of curves to plot
"""
win = make.dialog(
wintitle=_(
"Select up to %s points then press OK to accept "
"(hold Ctrl to select multiple points)"
)
% max_select,
edit=True,
type="curve",
curve_antialiasing=True,
size=(800, 600),
)
default = win.manager.add_tool(
SelectPointsTool,
title="Test",
on_active_item=True,
mode="reuse",
end_callback=callback_function,
max_select=max_select,
)
default.activate()
plot = win.manager.get_plot()
for cx, cy in cdata[:-1]:
item = make.mcurve(cx, cy)
plot.add_item(item)
# the last curve will be actibe and needs to have a different style for explictness
item = make.mcurve(*cdata[-1], "r-+")
plot.add_item(item)
plot.set_active_item(item)
plot.unselect_item(item)
exec_dialog(win)
def test_get_point():
"""Test"""
with qt_app_context(exec_loop=False):
x = linspace(-10, 10, num=200)
y = 0.25 * sin(sin(sin(x * 0.5)))
x2 = linspace(-10, 10, 200)
y2 = sin(sin(sin(x2)))
get_points(((x, y), (x2, y2), (x, sin(2 * y))), max_select=5)
if __name__ == "__main__":
test_get_point()