Procedurality.Channel.getWidth C# (CSharp) Method

getWidth() public method

public getWidth ( ) : int
return int
		public int getWidth() {
			return width;
		}
	

Usage Example

コード例 #1
0
ファイル: Layer.cs プロジェクト: N3X15/VoxelSim
		public Layer(Channel r, Channel g, Channel b) {
			this.width = r.getWidth();
			this.height = r.getHeight();
			this.r = r;
			this.g = g;
			this.b = b;
			this.a = null;
		}
All Usage Examples Of Procedurality.Channel::getWidth