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.
我总是更喜欢使用现有的(.Net 源代码)结构和枚举,而不是自己创建它们。我想要一个结构来定义 3d 大小。对于 2D,SizeF完成了这项工作。宽度、高度和深度呢?
您还没有告诉我们您正在编写什么样的应用程序,但如果您使用的是 WPF,那么Size3D可能就是您想要的:
Size3D
描述三维对象大小的数据结构。
诚然,它(奇怪地)具有X,Y和Z属性而不是Width,Height和Depth- 但至少该名称具有正确的含义。
X
Y
Z
Width
Height
Depth
(还有你需要的地方。Vector3D)Point3D
Vector3D
Point3D