<itemvalue="Return the distance from the origin of this to the intersection with [other] if this intersects with [other], or null if the don't intersect."/>
<itemvalue="intersects with triangle"/>
<itemvalue="On success, [rayNear] and [rayFar] are the points where the screen space [pickX], [pickY] intersect with the near and far planes respectively. The viewport is specified by ([viewportX], [viewportWidth]) and ([viewportY], [viewportHeight]). [cameraMatrix] includes both the projection and view transforms. Returns false on error, for example, the mouse is not in the viewport."/>
<itemvalue="pick ray"/>
<itemvalue="culling"/>
<itemvalue="is clipped face"/>
<itemvalue="add texture coordinates to renderMesh"/>
<itemvalue="perspective"/>
<itemvalue="apply perspective to screen transform"/>
<itemvalue="calculate the total number of vertices and faces"/>
<itemvalue="calculate vertices"/>
<itemvalue="The `blendMode` parameter is used to control how the colors in the `vertices` are combined with the colors in the `paint`. If there are no colors specified in `vertices` then the `blendMode` has no effect. If there are colors in the `vertices`, then the color taken from the [Paint.shader] or [Paint.color] in the `paint` is blended with the colors specified in the `vertices` using the `blendMode` parameter. For the purposes of this blending, the colors from the `paint` parameter are considered the source, and the colors from the `vertices` are considered the destination. [BlendMode.dst] ignores the `paint` and uses only the colors of the `vertices`; [BlendMode.src] ignores the colors of the `vertices` and uses only the colors in the `paint`."/>
<itemvalue="If the `indices` parameter is specified, all values in the list must be valid index values for pairs in `positions`. For example, if there are 12 numbers in `positions` (representing 6 coordinates), the `indicies` must be numbers in the range 0..5 inclusive. The `mode` and `positions` parameters must not be null."/>
<itemvalue="The `positions` parameter provides the points in the canvas space that will be use to draw the triangles. Each point is represented as two numbers in the list, the first giving the x coordinate and the second giving the y coordinate. (As a result, the list must have an even number of entries.)"/>
@ -51,22 +62,11 @@
<itemvalue="add cons"/>
<itemvalue="add typed literal"/>
<itemvalue="add type literal"/>
<itemvalue="add type parameter"/>
<itemvalue="add type parameter list"/>
<itemvalue="add uri based directive"/>
<itemvalue="add variable declaration"/>
<itemvalue=""node" exposes metadata about the variable declaration. We could check "node" to show the lint only in some conditions. This line tells custom_lint to render a warning at the location of "node". And the warning shown will use our `code` variable defined above as description."/>
<itemvalue="Whether to exclude these gestures from the semantics tree. For example, the long-press gesture for showing a tooltip is excluded because the tooltip itself is included in the semantics tree directly and so having a gesture to show it would result in duplication of information."/>
<itemvalue="The velocity of the last pointer to be lifted off of the screen."/>
<itemvalue="The velocity the pointer was moving when it stopped contacting the screen. Defaults to zero if not specified in the constructor."/>
<itemvalue="The pointer's velocity when it stopped contacting the screen. Defaults to zero if not specified in the constructor."/>
<itemvalue="A widget that imposes no constraints on its child, allowing it to render at its "natural" size. This allows a child to render at the size it would render if it were alone on an infinite canvas with no constraints. This container will then attempt to adopt the same size, within the limits of its own constraints. If it ends up with a different size, it will align the child based on [alignment]. If the box cannot expand enough to accommodate the entire child, the child will be clipped. In debug mode, if the child overflows the container, a warning will be printed on the console, and black and yellow striped areas will appear where the overflow occurs."/>
<itemvalue="[ConstrainedBox], for a box which imposes constraints on its child. [Align], which loosens the constraints given to the child rather than removing them entirely. [Container], a convenience widget that combines common painting, positioning, and sizing widgets. [OverflowBox], a widget that imposes different constraints on its child than it gets from its parent, possibly allowing the child to overflow the parent. [ConstraintsTransformBox], a widget that sizes its child using a transformed [BoxConstraints], and shows a warning if the child overflows in debug mode."/>