📄 solid.java
字号:
//===========================================================================//=-------------------------------------------------------------------------=//= Module history: =//= - May 2 2006 - Oscar Chavarro: Original base version =//===========================================================================package vsdk.toolkit.environment.geometry;import vsdk.toolkit.common.Vector3D;public abstract class Solid extends Geometry { /** Given current solid, the method `doCenterOfMass` returns a vector containing the center of mass for current solid, assuming that all the solid interior is filled with a material of constant density. */ public Vector3D doCenterOfMass() { return new Vector3D(0, 0, 0); }}//===========================================================================//= EOF =//===========================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -