style cleanup, use { on newline after function definition.
spelling 'impliment' -> 'implement'
This commit is contained in:
@@ -47,7 +47,8 @@ CVectorValue::CVectorValue(float x,float y,float z, AllocationTYPE alloctype)
|
||||
m_vec[KX_Z] = m_transformedvec[KX_Z] = z;
|
||||
|
||||
}
|
||||
CVectorValue::CVectorValue(double vec[],const char *name,AllocationTYPE alloctype) {
|
||||
CVectorValue::CVectorValue(double vec[],const char *name,AllocationTYPE alloctype)
|
||||
{
|
||||
|
||||
SetCustomFlag1(false);//FancyOutput=false;
|
||||
|
||||
@@ -64,7 +65,8 @@ CVectorValue::CVectorValue(double vec[],const char *name,AllocationTYPE alloctyp
|
||||
SetName(name);
|
||||
}
|
||||
|
||||
CVectorValue::CVectorValue(double vec[],AllocationTYPE alloctype) {
|
||||
CVectorValue::CVectorValue(double vec[],AllocationTYPE alloctype)
|
||||
{
|
||||
|
||||
SetCustomFlag1(false);//FancyOutput=false;
|
||||
|
||||
@@ -201,7 +203,8 @@ const STR_String & CVectorValue::GetText()
|
||||
return gstrVectorStr;
|
||||
}
|
||||
|
||||
CValue* CVectorValue::GetReplica() {
|
||||
CValue* CVectorValue::GetReplica()
|
||||
{
|
||||
CVectorValue* replica = new CVectorValue(*this);
|
||||
replica->ProcessReplica();
|
||||
return replica;
|
||||
|
||||
Reference in New Issue
Block a user