source: trunk/source/geometry/solids/BREPS/include/G4PointRat.icc @ 1358

Last change on this file since 1358 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 2.8 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4PointRat.icc,v 1.4 2006/06/29 18:40:15 gunter Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30// --------------------------------------------------------------------
31// GEANT 4 inline definitions file
32//
33// G4PointRat.icc
34//
35// Implementation of inline methods of G4PointRat
36// --------------------------------------------------------------------
37
38inline
39G4double G4PointRat::x() const
40{
41  return pt3d.x();
42}
43
44inline
45void G4PointRat::setX (G4double Value)
46{
47  pt3d.setX ( Value );
48}
49
50inline
51G4double G4PointRat::y() const
52{
53  return pt3d.y();
54}
55
56inline
57void G4PointRat::setY (G4double Value)
58{
59  pt3d.setY ( Value );
60}
61
62inline
63G4double G4PointRat::z() const
64{
65  return pt3d.z();
66}
67
68inline
69void G4PointRat::setZ (G4double Value)
70{
71  pt3d.setZ ( Value );
72}
73
74inline
75G4double G4PointRat::w() const
76{
77  return s;
78}
79
80inline
81void G4PointRat::setW(G4double Value)
82{
83  s=Value;
84}
85
86inline
87G4Point3D G4PointRat::pt() const
88{
89  return pt3d;
90}
91
92inline
93G4double G4PointRat::PlaneDistance(const G4Plane3D& Pl) const
94{
95  return ((Pl.a()*pt3d.x() + Pl.b()*pt3d.y() + Pl.c()*pt3d.z()) - Pl.d());
96}
97
98inline
99G4int G4PointRat::GetType(void) const
100{
101  return 4;
102}
Note: See TracBrowser for help on using the repository browser.