오픈 소스 소프트웨어 개발 및 다운로드

View 1.1.2 - Release Notes

category(Tag) tree

file info

category(Tag)
root
file name
NyARToolkit_for_C_Sharp_1.1.2_-_Notes
마지막 업데이트
2008-09-17 19:14
type
Plain Text
editor
nyatla
description
1.1.2 - Release Notes
language
English
translate
DsXRGB32Raster.csでマーカー比較が単色になっていた問題を修正しました。

誤:
    public class DsXRGB32Raster : NyARRaster
    {
        private const int INDEX_R = 0;
        private const int INDEX_G = 0;
        private const int INDEX_B = 0;

正:
    public class DsXRGB32Raster : NyARRaster
    {
        private const int INDEX_R = 2;
        private const int INDEX_G = 1;
        private const int INDEX_B = 0;