Example #1
0
 public static DxfIndexedColorSet GetAcadIndexedColorSet(
     ArgbColor backgroundColor)
 {
     ArgbColor[] argbColorArray = (ArgbColor[])DxfIndexedColorSet.smethod_16(backgroundColor).Clone();
     DxfIndexedColor.ApplyAcadCorrection(argbColorArray, backgroundColor);
     return(new DxfIndexedColorSet(argbColorArray));
 }
Example #2
0
        public new static short GetColorIndex(DxfIndexedColor indexedColors, ArgbColor color)
        {
            int colorDifference;

            return(DxfIndexedColor.GetColorIndex(indexedColors, color, out colorDifference));
        }
Example #3
0
 internal static ArgbColor[] smethod_18(ArgbColor backgroundColor)
 {
     return(DxfIndexedColor.smethod_6(DxfIndexedColorSet.smethod_17(backgroundColor)));
 }