Click or drag to resize

PointyTriGridTCell Constructor (Int32, Int32, FuncPointyTriPoint, Boolean)

Construct a new grid whose cells are determined by the given test function. The test function should only return true for points within the bounds of the default shape. No transformations are applied to the grid. Normally, the static factory methods or shape building methods should be used to create grids. These constructors are provided for advanced usage.

Namespace:  Gamelogic.Grids
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public PointyTriGrid(
	int width,
	int height,
	Func<PointyTriPoint, bool> isInside
)

Parameters

width
Type: SystemInt32
height
Type: SystemInt32
isInside
Type: SystemFuncPointyTriPoint, Boolean
See Also