46 lines
2.1 KiB
C
46 lines
2.1 KiB
C
/***********************************************************************************************************************
|
|
*
|
|
* Copyright (c) 2010 - 2022 by Tech Soft 3D, Inc.
|
|
* The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., and considered a trade secret
|
|
* as defined under civil and criminal statutes. Tech Soft 3D shall pursue its civil and criminal remedies in the event
|
|
* of unauthorized use or misappropriation of its trade secrets. Use of this information by anyone other than authorized
|
|
* employees of Tech Soft 3D, Inc. is granted only under a written non-disclosure agreement, expressly prescribing the
|
|
* scope and manner of such use.
|
|
*
|
|
***********************************************************************************************************************/
|
|
/**
|
|
* Sample CreatePRCCubes
|
|
* file CreateGraphics.cpp
|
|
* This file is containing the function allowing to create graphics.
|
|
*
|
|
*
|
|
***********************************************************************************************************************/
|
|
#pragma once
|
|
|
|
#include "../CreatePRCCubesDef.h"
|
|
|
|
|
|
//######################################################################################################################
|
|
#define WHITE 1.,1.,1.
|
|
#define DARK_GREY 0.2,0.2,0.2
|
|
|
|
#define RED 1.,0.,0.
|
|
#define GREEN 0.,1.,0.
|
|
#define BLUE 0.,0.,1.
|
|
|
|
#define YELLOW 1.,1.,0.
|
|
#define PURPLE 1.,0.,1.
|
|
#define TURQUOISE 0.,1.,1.
|
|
|
|
//######################################################################################################################
|
|
A3DStatus createRGBColor(A3DUns32& uiIndexRgbColor, A3DDouble dRed, A3DDouble dGreen, A3DDouble dBlue);
|
|
A3DStatus createMaterial(A3DUns32& uiMaterialGenericIndex, A3DDouble dRed, A3DDouble dGreen, A3DDouble dBlue);
|
|
|
|
A3DStatus setGraphicsColor(A3DRootBaseWithGraphicsData* pOutRootBaseWithGraphics, A3DDouble dRed, A3DDouble dGreen, A3DDouble dBlue, A3DDouble dAlpha);
|
|
A3DStatus setEntityColor(A3DEntity* inEntity, A3DDouble dRed, A3DDouble dGreen, A3DDouble dBlue, A3DDouble dAlpha);
|
|
|
|
A3DStatus setGraphicsHidden(A3DRootBaseWithGraphicsData* pOutRootBaseWithGraphics);
|
|
A3DStatus setEntityHidden(A3DEntity* inEntity);
|
|
|
|
|