0030537: Visualization - wrapping text in font text formatter
[occt.git] / src / Graphic3d / Graphic3d_Vertex.cxx
CommitLineData
b311480e 1// Created by: NW,JPB,CAL
2// Copyright (c) 1991-1999 Matra Datavision
973c2be1 3// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
b8ddfc2f 16#include <Graphic3d_Vertex.hxx>
7fd59977 17
a5162275 18#include <gp_XYZ.hxx>
19#include <Standard_Dump.hxx>
20
b8ddfc2f 21Standard_ShortReal Graphic3d_Vertex::Distance(const Graphic3d_Vertex& AOther) const
22{
23 return sqrt( (X() - AOther.X()) * (X() - AOther.X())
24 + (Y() - AOther.Y()) * (Y() - AOther.Y())
25 + (Z() - AOther.Z()) * (Z() - AOther.Z()) );
7fd59977 26}
a5162275 27
28// =======================================================================
29// function : DumpJson
30// purpose :
31// =======================================================================
32void Graphic3d_Vertex::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
33{
34 gp_XYZ aCoord (xyz[0], xyz[1], xyz[2]);
35 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &aCoord)
36}