C# Class CSharpGL.GlyphInfo

绘制一个字符所需要的所有信息
Inheritance: ICloneable
Afficher le fichier Open project: bitzhuwei/CSharpGL Class Usage Examples

Méthodes publiques

Свойство Type Description
Default GlyphInfo
height int
width int
xoffset int
yoffset int

Méthodes publiques

Méthode Description
Clone ( ) : object

clone this object.

GlyphInfo ( int xoffset, int yoffset, int width, int height ) : System

绘制一个字符所需要的所有信息

ToRectangle ( int shrinkX, int shrinkY, int shrinkWidth, int shrinkHeight ) : Rectangle

ToString ( ) : string

Method Details

Clone() public méthode

clone this object.
public Clone ( ) : object
Résultat object

GlyphInfo() public méthode

绘制一个字符所需要的所有信息
public GlyphInfo ( int xoffset, int yoffset, int width, int height ) : System
xoffset int 此字符的字形在纹理的横向偏移量(左上角)
yoffset int 此字符的字形在纹理的纵向偏移量(左上角)
width int 此字符的字形宽度
height int 此字符的字形高度
Résultat System

ToRectangle() public méthode

public ToRectangle ( int shrinkX, int shrinkY, int shrinkWidth, int shrinkHeight ) : Rectangle
shrinkX int
shrinkY int
shrinkWidth int
shrinkHeight int
Résultat System.Drawing.Rectangle

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

Default public_oe static_oe property

public static GlyphInfo,CSharpGL Default
Résultat GlyphInfo

height public_oe property

此字符的字形高度
public int height
Résultat int

width public_oe property

此字符的字形宽度
public int width
Résultat int

xoffset public_oe property

此字符的字形在纹理的横向偏移量(左上角)
public int xoffset
Résultat int

yoffset public_oe property

此字符的字形在纹理的纵向偏移量(左上角)
public int yoffset
Résultat int