1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-07-25 12:55:50 +03:00
occt/src/GProp/GProp_PGProps.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

229 lines
6.1 KiB
C++

// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <gp.hxx>
#include <gp_Pnt.hxx>
#include <gp_XYZ.hxx>
#include <GProp_PGProps.hxx>
#include <Standard_DimensionError.hxx>
#include <Standard_DomainError.hxx>
//#include <gp.hxx>
typedef gp_Pnt Pnt;
typedef gp_Mat Mat;
typedef gp_XYZ XYZ;
typedef TColgp_Array1OfPnt Array1OfPnt;
typedef TColgp_Array2OfPnt Array2OfPnt;
typedef TColStd_Array1OfReal Array1OfReal;
typedef TColStd_Array2OfReal Array2OfReal;
GProp_PGProps::GProp_PGProps ()
{
g = gp::Origin();
loc = gp::Origin();
dim = 0.0;
}
void GProp_PGProps::AddPoint (const Pnt& P)
{
Standard_Real Xp, Yp, Zp;
P.Coord (Xp, Yp, Zp);
Standard_Real Ixy = - Xp * Yp;
Standard_Real Ixz = - Xp * Zp;
Standard_Real Iyz = - Yp * Zp;
Standard_Real Ixx = Yp * Yp + Zp * Zp;
Standard_Real Iyy = Xp * Xp + Zp * Zp;
Standard_Real Izz = Xp * Xp + Yp * Yp;
Mat Mp (XYZ (Ixx, Ixy, Ixz), XYZ (Ixy, Iyy, Iyz), XYZ (Ixz, Iyz, Izz));
if (dim == 0) {
dim = 1;
g = P;
inertia = Mp;
}
else {
Standard_Real X, Y, Z;
g.Coord (X, Y, Z);
X = X * dim + Xp;
Y = Y * dim + Yp;
Z = Z * dim + Zp;
dim = dim + 1;
X /= dim;
Y /= dim;
Z /= dim;
g.SetCoord (X, Y, Z);
inertia = inertia + Mp;
}
}
void GProp_PGProps::AddPoint (const gp_Pnt& P, const Standard_Real Density)
{
if (Density <= gp::Resolution()) Standard_DomainError::Raise();
Standard_Real Xp, Yp, Zp;
P.Coord (Xp, Yp, Zp);
Standard_Real Ixy = - Xp * Yp;
Standard_Real Ixz = - Xp * Zp;
Standard_Real Iyz = - Yp * Zp;
Standard_Real Ixx = Yp * Yp + Zp * Zp;
Standard_Real Iyy = Xp * Xp + Zp * Zp;
Standard_Real Izz = Xp * Xp + Yp * Yp;
Mat Mp (XYZ (Ixx, Ixy, Ixz), XYZ (Ixy, Iyy, Iyz), XYZ (Ixz, Iyz, Izz));
if (dim == 0) {
dim = Density;
g.SetXYZ (P.XYZ().Multiplied (Density));
inertia = Mp * Density;
}
else {
Standard_Real X, Y, Z;
g.Coord (X, Y, Z);
X = X * dim + Xp * Density;
Y = Y * dim + Yp * Density;
Z = Z * dim + Zp * Density;
dim = dim + Density;
X /= dim;
Y /= dim;
Z /= dim;
g.SetCoord (X, Y, Z);
inertia = inertia + Mp * Density;
}
}
GProp_PGProps::GProp_PGProps (const Array1OfPnt& Pnts)
{
for (Standard_Integer i = Pnts.Lower(); i <= Pnts.Upper(); i++) AddPoint(Pnts(i));
}
GProp_PGProps::GProp_PGProps (const Array2OfPnt& Pnts)
{
for (Standard_Integer j = Pnts.LowerCol(); j <= Pnts.UpperCol(); j++)
{
for (Standard_Integer i = Pnts.LowerRow(); i <= Pnts.UpperRow(); i++) AddPoint(Pnts (i, j));
}
}
GProp_PGProps::GProp_PGProps (const Array1OfPnt& Pnts,const Array1OfReal& Density)
{
if (Pnts.Length() != Density.Length()) Standard_DomainError::Raise();
Standard_Integer ip = Pnts.Lower();
Standard_Integer id = Density.Lower();
while (id <= Pnts.Upper()) {
Standard_Real D = Density (id);
if (D <= gp::Resolution()) Standard_DomainError::Raise();
AddPoint(Pnts (ip),D);
ip++; id++;
}
}
GProp_PGProps::GProp_PGProps (const Array2OfPnt& Pnts,const Array2OfReal& Density)
{
if (Pnts.ColLength() != Density.ColLength() || Pnts.RowLength() != Density.RowLength()) Standard_DomainError::Raise();
Standard_Integer ip = Pnts.LowerRow();
Standard_Integer id = Density.LowerRow();
Standard_Integer jp = Pnts.LowerCol();
Standard_Integer jd = Density.LowerCol();
while (jp <= Pnts.UpperCol()) {
while (ip <= Pnts.UpperRow()) {
Standard_Real D = Density (id, jd);
if (D <= gp::Resolution()) Standard_DomainError::Raise();
AddPoint(Pnts (ip, jp),D);
ip++; id++;
}
jp++; jd++;
}
}
void GProp_PGProps::Barycentre(const Array1OfPnt& Pnts,
const Array1OfReal& Density,
Standard_Real& Mass,
Pnt& G)
{
if (Pnts.Length() != Density.Length()) Standard_DimensionError::Raise();
Standard_Integer ip = Pnts.Lower();
Standard_Integer id = Density.Lower();
Mass = Density (id);
XYZ Gxyz = Pnts (ip).XYZ();
Gxyz.Multiply (Mass);
while (ip <= Pnts.Upper()) {
Mass = Mass + Density (id);
Gxyz.Add ( (Pnts(ip).XYZ()).Multiplied (Density (id)) );
ip++;
id++;
}
Gxyz.Divide (Mass);
G.SetXYZ (Gxyz);
}
void GProp_PGProps::Barycentre(const Array2OfPnt& Pnts,
const Array2OfReal& Density,
Standard_Real& Mass,
Pnt& G)
{
if (Pnts.RowLength() != Density.RowLength() || Pnts.ColLength() != Density.ColLength()) Standard_DimensionError::Raise();
Standard_Integer ip = Pnts.LowerRow();
Standard_Integer id = Density.LowerRow();
Standard_Integer jp = Pnts.LowerCol();
Standard_Integer jd = Density.LowerCol();
Mass = 0.0;
XYZ Gxyz (0.0, 0.0, 0.0);
while (jp <= Pnts.UpperCol()) {
while (ip <= Pnts.UpperRow()) {
Mass = Mass + Density (id, jd);
Gxyz.Add ((Pnts(ip, jp).XYZ()).Multiplied (Density (id, jd)));
ip++; id++;
}
jp++; jd++;
}
Gxyz.Divide (Mass);
G.SetXYZ (Gxyz);
}
Pnt GProp_PGProps::Barycentre (const Array1OfPnt& Pnts) {
XYZ Gxyz = Pnts (Pnts.Lower()).XYZ();
for (Standard_Integer i = Pnts.Lower() + 1; i <= Pnts.Upper(); i++) {
Gxyz.Add (Pnts(i).XYZ());
}
Gxyz.Divide (Pnts.Length());
return Pnt (Gxyz);
}
Pnt GProp_PGProps::Barycentre (const Array2OfPnt& Pnts) {
XYZ Gxyz (0.0, 0.0, 0.0);
for (Standard_Integer j = Pnts.LowerCol(); j <= Pnts.UpperCol(); j++) {
for (Standard_Integer i = Pnts.LowerRow(); i <= Pnts.UpperRow(); i++) {
Gxyz.Add (Pnts(i, j).XYZ());
}
}
Gxyz.Divide (Pnts.RowLength() * Pnts.ColLength());
return Pnt (Gxyz);
}