我的要求是从数据点 (xyz) 值列表中创建一个 3d 曲面图(还应该显示 xyz 轴)。 3d 可视化应该在 ANDROID 上完成。
我的输入:目前计划使用 open gl 1.0 和 java。我也在考虑使用 open gl 1.0 的 Adore3d 、 min3d 和 rgl 包。擅长java,但3d编程新手。
时限:2个月
我想知道最好的方法是什么?opengl 1.0 适合 3d 曲面绘图吗?还有其他可以与 Android 一起使用的包/库吗?
我有一个工作查询,不知道它是否有效.
表列:
要执行的操作:
注意:我也在检查每个选择中的id和fid虽然我需要检查所有选择的相同值.
现有查询:
select sell-cancelsell scount, bank-cancelbank bcount from
(select sum(a.unit) as sell from table1 a where
a.p_type = 'Sell' and a.id=1 and a.fid=2 ),
(select sum(c.unit) as cancelsell from table1 c where
c.p_type = 'CancelSell' and c.id=1 and c.fid=2),
(select sum(b.unit) as bank from table1 b where
b.p_type = 'Bank' and b.id=1 and b.fid=2),
(select sum(d.unit) as cancelbank from table1 d where
d.p_type = 'CancelBank' and d.id=1 …Run Code Online (Sandbox Code Playgroud)