mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
46 lines
1.7 KiB
Java
Executable File
46 lines
1.7 KiB
Java
Executable File
// Java Native Class from Cas.Cade
|
|
// Copyright (C) 1991,1999 by
|
|
//
|
|
// MATRA DATAVISION, FRANCE
|
|
//
|
|
// This software is furnished in accordance with the terms and conditions
|
|
// of the contract and with the inclusion of the above copyright notice.
|
|
// This software or any other copy thereof may not be provided or otherwise
|
|
// be made available to any other person. No title to an ownership of the
|
|
// software is hereby transferred.
|
|
//
|
|
// At the termination of the contract, the software and all copies of this
|
|
// software must be deleted.
|
|
//
|
|
|
|
|
|
package CASCADESamplesJni;
|
|
|
|
|
|
public class Graphic3d_NameOfMaterial extends jcas.Standard_Enumeration {
|
|
|
|
public final static short Graphic3d_NOM_BRASS = 0;
|
|
public final static short Graphic3d_NOM_BRONZE = 1;
|
|
public final static short Graphic3d_NOM_COPPER = 2;
|
|
public final static short Graphic3d_NOM_GOLD = 3;
|
|
public final static short Graphic3d_NOM_PEWTER = 4;
|
|
public final static short Graphic3d_NOM_PLASTER = 5;
|
|
public final static short Graphic3d_NOM_PLASTIC = 6;
|
|
public final static short Graphic3d_NOM_SILVER = 7;
|
|
public final static short Graphic3d_NOM_STEEL = 8;
|
|
public final static short Graphic3d_NOM_STONE = 9;
|
|
public final static short Graphic3d_NOM_SHINY_PLASTIC = 10;
|
|
public final static short Graphic3d_NOM_SATIN = 11;
|
|
public final static short Graphic3d_NOM_METALIZED = 12;
|
|
public final static short Graphic3d_NOM_NEON_GNC = 13;
|
|
public final static short Graphic3d_NOM_CHROME = 14;
|
|
public final static short Graphic3d_NOM_ALUMINIUM = 15;
|
|
public final static short Graphic3d_NOM_OBSIDIAN = 16;
|
|
public final static short Graphic3d_NOM_NEON_PHC = 17;
|
|
public final static short Graphic3d_NOM_JADE = 18;
|
|
public final static short Graphic3d_NOM_DEFAULT = 19;
|
|
|
|
|
|
|
|
}
|