mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
(cherry picked from commit 0a9f129d67748f59a40e7758d271e87ae4d535de) # Conflicts: # src/Graphic3d/Graphic3d_CView.cxx # src/Graphic3d/Graphic3d_WorldViewProjState.hxx # src/SelectMgr/SelectMgr_TriangularFrustumSet.cxx # src/SelectMgr/SelectMgr_TriangularFrustumSet.hxx
31 lines
1.3 KiB
C++
31 lines
1.3 KiB
C++
// Created on: 2020-02-06
|
|
// Created by: Svetlana SHUTINA
|
|
// Copyright (c) 2020 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 <Graphic3d_CameraTile.hxx>
|
|
|
|
#include <Standard_Dump.hxx>
|
|
|
|
//=======================================================================
|
|
//function : DumpJson
|
|
//purpose :
|
|
//=======================================================================
|
|
void Graphic3d_CameraTile::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
|
|
{
|
|
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &TotalSize)
|
|
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &TileSize)
|
|
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &Offset)
|
|
OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, IsTopDown)
|
|
}
|