1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-16 10:08:36 +03:00
occt/samples/java/java/SampleAISBasicJni/SampleAISBasicPackage.java
2012-03-05 19:23:40 +04:00

44 lines
1.6 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 SampleAISBasicJni;
import CASCADESamplesJni.V3d_Viewer;
import jcas.Standard_ExtString;
import CASCADESamplesJni.V3d_View;
import jcas.Standard_Integer;
import CASCADESamplesJni.AIS_InteractiveContext;
import CASCADESamplesJni.TCollection_AsciiString;
public class SampleAISBasicPackage {
static {
System.loadLibrary("SampleAISBasicJni");
}
native public static V3d_Viewer CreateViewer(String aName);
native public static void SetWindow(V3d_View aView,int hiwin,int lowin);
native public static void DisplayTrihedron(AIS_InteractiveContext aContext);
native public static void DisplayCircle(AIS_InteractiveContext aContext,TCollection_AsciiString Message);
native public static void DisplayLine(AIS_InteractiveContext aContext,TCollection_AsciiString Message);
native public static void DisplaySphere(AIS_InteractiveContext aContext,TCollection_AsciiString Message);
native public static void DisplayCylinder(AIS_InteractiveContext aContext,TCollection_AsciiString Message);
}