Package 'JavaGD'

Title: Java Graphics Device
Description: Graphics device routing all graphics commands to a Java program. The actual functionality of the JavaGD depends on the Java-side implementation. Simple AWT and Swing implementations are included.
Authors: Simon Urbanek <[email protected]>
Maintainer: Simon Urbanek <[email protected]>
License: GPL-2 | GPL-3
Version: 0.5-3
Built: 2024-11-05 05:43:17 UTC
Source: https://github.com/s-u/javagd

Help Index


Create a new Java graphics device

Description

JavaGD initializes a new Java grapgics device and creates a new window.

Usage

JavaGD(name="JavaGD", width=400, height=300, ps=12)

Arguments

name

Name of the device

width

Initial width of the window (usually in pixels, but the actual interpretation depends on the Java implementation)

height

Initial height of the window

ps

Initial point size

Value

Currently the return value is implementation dependent, mostly just the return code as returned by the low-level C function

Examples

## Not run: 
JavaGD()

## End(Not run)