本文整理汇总了Java中com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder类的典型用法代码示例。如果您正苦于以下问题:Java BitTreeDecoder类的具体用法?Java BitTreeDecoder怎么用?Java BitTreeDecoder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BitTreeDecoder类属于com.badlogic.gdx.utils.compression.rangecoder包,在下文中一共展示了BitTreeDecoder类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Create
import com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder; //导入依赖的package包/类
public void Create(int paramInt)
{
while (this.m_NumPosStates < paramInt)
{
this.m_LowCoder[this.m_NumPosStates] = new BitTreeDecoder(3);
this.m_MidCoder[this.m_NumPosStates] = new BitTreeDecoder(3);
this.m_NumPosStates = (1 + this.m_NumPosStates);
}
}
示例2: Create
import com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder; //导入依赖的package包/类
public void Create (int numPosStates) {
for (; m_NumPosStates < numPosStates; m_NumPosStates++) {
m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits);
m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits);
}
}
示例3: Decoder
import com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder; //导入依赖的package包/类
public Decoder () {
for (int i = 0; i < Base.kNumLenToPosStates; i++)
m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
}
示例4: Create
import com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder; //导入依赖的package包/类
public void Create(int numPosStates) {
for (; m_NumPosStates < numPosStates; m_NumPosStates++) {
m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits);
m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits);
}
}
示例5: Decoder
import com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder; //导入依赖的package包/类
public Decoder() {
for (int i = 0; i < Base.kNumLenToPosStates; i++)
m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
}
示例6: Decoder
import com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder; //导入依赖的package包/类
public Decoder()
{
for (int i = 0; i < 4; i++)
this.m_PosSlotDecoder[i] = new BitTreeDecoder(6);
}