X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=blobdiff_plain;f=src%2FBRep%2FBRep_CurveOnSurface.cxx;h=7ff94396d6ffafdd7d99422056330caf3e6fdb04;hb=bc73b00672a218a1301520a3562ece96f72a679c;hpb=00ea7f2676893c9dd9b31cf1f0a8bcad61416a6a diff --git a/src/BRep/BRep_CurveOnSurface.cxx b/src/BRep/BRep_CurveOnSurface.cxx index f5f6cd377b..7ff94396d6 100644 --- a/src/BRep/BRep_CurveOnSurface.cxx +++ b/src/BRep/BRep_CurveOnSurface.cxx @@ -146,4 +146,20 @@ void BRep_CurveOnSurface::Update() } } +//======================================================================= +//function : DumpJson +//purpose : +//======================================================================= +void BRep_CurveOnSurface::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const +{ + OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream) + + OCCT_DUMP_BASE_CLASS (theOStream, theDepth, BRep_GCurve) + + OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &myUV1) + OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &myUV2) + + OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myPCurve.get()) + OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, mySurface.get()) +}