From 574b2cbdb3bd895270b4ef4cd10fe24dfe3c1388 Mon Sep 17 00:00:00 2001 From: abd Date: Fri, 1 Jul 2005 04:30:15 +0000 Subject: [PATCH] Update comments --- src/GLViewer/GLViewer_AspectLine.cxx | 53 +++++++++++++++++++++++----- 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/src/GLViewer/GLViewer_AspectLine.cxx b/src/GLViewer/GLViewer_AspectLine.cxx index 79bf75b2e..5399081db 100644 --- a/src/GLViewer/GLViewer_AspectLine.cxx +++ b/src/GLViewer/GLViewer_AspectLine.cxx @@ -1,13 +1,18 @@ -/*************************************************************************** -** Class: GLViewer_AspectLine -** Descr: Substitution of Prs2d_AspectLine for OpenGL -** Module: GLViewer -** Created: UI team, 05.11.02 -****************************************************************************/ - -//#include +// File: GLViewer_AspectLine.cxx +// Created: 26/05/2005 3:17:00 PM +// Author: Alexander BORODIN +// Copyright (C) CEA 2005 + +//================================================================ +// Class : GLViewer_AspectLine +// Description : Substitution of Prs2d_AspectLine for OpenGL +//================================================================ #include "GLViewer_AspectLine.h" +//======================================================================= +// Function: GLViewer_AspectLine +// Purpose : +//======================================================================= GLViewer_AspectLine::GLViewer_AspectLine() { myNColor = QColor( 255, 255, 255 ); @@ -18,6 +23,10 @@ GLViewer_AspectLine::GLViewer_AspectLine() myLineType = 0; } +//======================================================================= +// Function: GLViewer_AspectLine +// Purpose : +//======================================================================= GLViewer_AspectLine::GLViewer_AspectLine( int type, float width ) { myNColor = QColor( 255, 255, 255 ); @@ -31,10 +40,18 @@ GLViewer_AspectLine::GLViewer_AspectLine( int type, float width ) myLineType = 0; } +//======================================================================= +// Function: ~GLViewer_AspectLine +// Purpose : +//======================================================================= GLViewer_AspectLine::~GLViewer_AspectLine() { } +//======================================================================= +// Function: setLineColors +// Purpose : +//======================================================================= void GLViewer_AspectLine::setLineColors( QColor nc, QColor hc, QColor sc ) { myNColor = nc; @@ -42,6 +59,10 @@ void GLViewer_AspectLine::setLineColors( QColor nc, QColor hc, QColor sc ) mySColor = sc; } +//======================================================================= +// Function: setLineType +// Purpose : +//======================================================================= int GLViewer_AspectLine::setLineType( const int type ) { if( type == 1 || type == 0 ) @@ -52,6 +73,10 @@ int GLViewer_AspectLine::setLineType( const int type ) return 1; } +//======================================================================= +// Function: setLineWidth +// Purpose : +//======================================================================= int GLViewer_AspectLine::setLineWidth( const float width ) { if( width > 0 ) @@ -62,6 +87,10 @@ int GLViewer_AspectLine::setLineWidth( const float width ) return 1; } +//======================================================================= +// Function: getLineColors +// Purpose : +//======================================================================= void GLViewer_AspectLine::getLineColors( QColor& nc, QColor& hc, QColor& sc ) const { nc = myNColor; @@ -69,6 +98,10 @@ void GLViewer_AspectLine::getLineColors( QColor& nc, QColor& hc, QColor& sc ) co sc = mySColor; } +//======================================================================= +// Function: getByteCopy +// Purpose : +//======================================================================= QByteArray GLViewer_AspectLine::getByteCopy() const { int anISize = sizeof( int ); @@ -122,6 +155,10 @@ QByteArray GLViewer_AspectLine::getByteCopy() const return aResult; } +//======================================================================= +// Function: fromByteCopy +// Purpose : +//======================================================================= GLViewer_AspectLine* GLViewer_AspectLine::fromByteCopy( QByteArray theBytes ) { -- 2.39.2