1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-06-05 11:24:17 +03:00
occt/samples/java/java/CASCADESamplesJni/TopAbs_ShapeEnum.java
2012-03-05 19:23:40 +04:00

35 lines
1.1 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 TopAbs_ShapeEnum extends jcas.Standard_Enumeration {
public final static short TopAbs_COMPOUND = 0;
public final static short TopAbs_COMPSOLID = 1;
public final static short TopAbs_SOLID = 2;
public final static short TopAbs_SHELL = 3;
public final static short TopAbs_FACE = 4;
public final static short TopAbs_WIRE = 5;
public final static short TopAbs_EDGE = 6;
public final static short TopAbs_VERTEX = 7;
public final static short TopAbs_SHAPE = 8;
}