Cairo__PathDataType.st
author Jan Vrany <jan.vrany@labware.com>
Mon, 15 Jun 2020 15:14:31 +0100
changeset 89 2a1c3c0439ea
parent 88 9d51db2ba641
permissions -rw-r--r--
Remove invalid and superfluous `Cairo::CObject class >> fromExternalObject:`

"
stx:goodies/libcairo - Cairo graphics bindings for Smalltalk/X

Copyright (C) 2008-2019 Jan Vrany

This code is licensed under Creative Commons Attribution-NonCommercial License.
For full text of the license, see file LICENSE.txt
"
"{ Package: 'stx:goodies/libcairo' }"

"{ NameSpace: Cairo }"

SharedPool subclass:#PathDataType
	instanceVariableNames:''
	classVariableNames:'CAIRO_PATH_MOVE_TO CAIRO_PATH_LINE_TO CAIRO_PATH_CURVE_TO
		CAIRO_PATH_CLOSE_PATH'
	poolDictionaries:''
	category:'Cairo-Constants'
!

!PathDataType class methodsFor:'documentation'!

copyright
"
stx:goodies/libcairo - Cairo graphics bindings for Smalltalk/X

Copyright (C) 2008-2019 Jan Vrany

This code is licensed under Creative Commons Attribution-NonCommercial License.
For full text of the license, see file LICENSE.txt
"
! !

!PathDataType class methodsFor:'initialization'!

initialize

    CAIRO_PATH_MOVE_TO := 0.
    CAIRO_PATH_LINE_TO := 1.
    CAIRO_PATH_CURVE_TO := 2.
    CAIRO_PATH_CLOSE_PATH := 3.
! !

!PathDataType class methodsFor:'constants'!

CAIRO_PATH_CLOSE_PATH

    ^CAIRO_PATH_CLOSE_PATH
!

CAIRO_PATH_CURVE_TO

    ^CAIRO_PATH_CURVE_TO
!

CAIRO_PATH_LINE_TO

    ^CAIRO_PATH_LINE_TO
!

CAIRO_PATH_MOVE_TO

    ^CAIRO_PATH_MOVE_TO
! !

!PathDataType class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !


PathDataType initialize!