本文整理汇总了C#中Piece.DoubleDotCount方法的典型用法代码示例。如果您正苦于以下问题:C# Piece.DoubleDotCount方法的具体用法?C# Piece.DoubleDotCount怎么用?C# Piece.DoubleDotCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Piece
的用法示例。
在下文中一共展示了Piece.DoubleDotCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreatePatternPiece
public static Piece CreatePatternPiece(Piece bigPiece, int wSectionCount, int hSectionCount, int dSectionCount, int wsize, int dsize, int hsize, int w, int d, int h)
{
var piece = new Piece();
piece.sizes[0] = wsize;
piece.sizes[1] = dsize;
piece.sizes[2] = hsize;
if (w == 0)
piece.faceColors[0] = bigPiece.faceColors[0];
if (w == wSectionCount - 1)
piece.faceColors[1] = bigPiece.faceColors[1];
if (d == 0)
piece.faceColors[2] = bigPiece.faceColors[2];
if (d == dSectionCount - 1)
piece.faceColors[3] = bigPiece.faceColors[3];
if (h == 0)
piece.faceColors[4] = bigPiece.faceColors[4];
if (h == hSectionCount - 1)
piece.faceColors[5] = bigPiece.faceColors[5];
piece.doubleDotCount = piece.DoubleDotCount();
piece.sizeSum = piece.sizes.Sum();
return piece;
}