C# Class CsPotrace.Potrace.MonotonInterval

The MonotonInterval defines a structure related to an iPoint array. For each index i,j with from <= i < j <= to in a cyclic sense is iPointArray[i].y <= iPointArray[j].y if Increasing is true, else is iPointArray[i].y >= iPointArray[j].y.
Afficher le fichier Open project: antimatter15/js-potrace

Méthodes publiques

Свойство Type Description
CurrentID int
Increasing bool
from int
to int

Méthodes publiques

Méthode Description
Max ( ) : int
MaxY ( iPoint Pts ) : int
Min ( ) : int
MinY ( iPoint Pts ) : int
MonotonInterval ( bool Increasing, int from, int to ) : System
ResetCurrentID ( int modulo ) : void

Method Details

Max() public méthode

public Max ( ) : int
Résultat int

MaxY() public méthode

public MaxY ( iPoint Pts ) : int
Pts iPoint
Résultat int

Min() public méthode

public Min ( ) : int
Résultat int

MinY() public méthode

public MinY ( iPoint Pts ) : int
Pts iPoint
Résultat int

MonotonInterval() public méthode

public MonotonInterval ( bool Increasing, int from, int to ) : System
Increasing bool
from int
to int
Résultat System

ResetCurrentID() public méthode

public ResetCurrentID ( int modulo ) : void
modulo int
Résultat void

Property Details

CurrentID public_oe property

public int CurrentID
Résultat int

Increasing public_oe property

public bool Increasing
Résultat bool

from public_oe property

public int from
Résultat int

to public_oe property

public int to
Résultat int