Attribute VB_Name = "PublicVars"
' $3  07/10/02 Final Release 1.
' $2  07/09/02 Added C.O.V. coordinate system.
' $1  06/26/02 Created.
' ====================================================================
'  Description: PublicVars.bas
'               Module for variables with global scope.
'       Author: Ray Gorman, Engineering Studio
'               raygorman@att.net, rgorman@EngrStudio.com
'
' ====================================================================
'  Copyright 2002 BlueFin Robotics Corp.
' ====================================================================
'

Type MassProps
    CenterOfMassX As Double
    CenterOfMassY As Double
    CenterOfMassZ As Double
    Volume As Double
    Mass As Double
End Type

Type Vector
    X As Double
    Y As Double
    Z As Double
End Type

' Data passed from SolidWorks to this application when connecting
'
Public swApp As SldWorks.SldWorks ' SolidWorks application object
Public iCookie As Long               ' the cookie is an addin identifier

Public iUseLightweight As Integer
Public iUseSuppressed As Integer
Public iUseCoordSys As Integer

Public iUnitsIndex As Integer
Public iDecimalPlaces As Integer

' End
