Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以将 3D 对象存储到 android SQLite 数据库中以检索对象并使用它。如果可能,那么我可以知道是否有任何教程/指南可以做到这一点?还有其他方法吗?
谢谢你。
如果可能,最好将模型作为数字集合存储在适当的数据库结构中。我没有具体说明你的意思是什么模型,但如果它们可以用一系列数字来描述(就像大多数模型一样),你应该能够以这种方式存储它们。
一个非常简单的例子是矩形。一个矩形可以用 4 个参数来描述:左上角的 (x,y) 和右下角的 (x,y)。因此,您的数据库将有 4 列来存储每个矩形的这些值。显然,3D 模型更复杂,但也可以使用一系列数字来表示。