findIsolines
Find the isolines of the given function. You can specify which isolines will be extracted with the levels parameter: for each value included in the collection, the corresponding isoline will be extracted. Isolines will be calculated within a rectangular region defined by two opposite vertexes. This means that the algorithm will not consider the space outside the given region at all.
Return
the isolines
Parameters
- the function for which to calculate the isolines
- x coordinate of vertex 1, defining the rectangular space within which isolines will be calculated
- y coordinate of vertex 1, defining the rectangular space within which isolines will be calculated
- x coordinate of vertex 2, defining the rectangular space within which isolines will be calculated
- y coordinate of vertex 2, defining the rectangular space within which isolines will be calculated
- collection containing the levels of the isolines that will be calculated
Find the isolines of the given function. This method is equivalent to findIsolines, with the difference that it allows you to specify the diagonal of the rectangular region, instead of the four vertexes separately.
Return
the isolines
Parameters
- the function for which to calculate the isolines
- the diagonal of the rectangular space within which isolines will be calculated
- collection containing the levels of the isolines that will be calculated