X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=blobdiff_plain;f=src%2FBRep%2FBRep_PointOnCurve.cxx;h=f88baae812c3a65ed53c61a02140c351f720ab14;hb=bc73b00672a218a1301520a3562ece96f72a679c;hpb=00ea7f2676893c9dd9b31cf1f0a8bcad61416a6a diff --git a/src/BRep/BRep_PointOnCurve.cxx b/src/BRep/BRep_PointOnCurve.cxx index 737c7c1f2b..f88baae812 100644 --- a/src/BRep/BRep_PointOnCurve.cxx +++ b/src/BRep/BRep_PointOnCurve.cxx @@ -80,4 +80,16 @@ void BRep_PointOnCurve::Curve(const Handle(Geom_Curve)& C) myCurve = C; } +//======================================================================= +//function : DumpJson +//purpose : +//======================================================================= +void BRep_PointOnCurve::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const +{ + OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream) + + OCCT_DUMP_BASE_CLASS (theOStream, theDepth, BRep_PointRepresentation) + + OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myCurve.get()) +}