上一篇主要介绍了绘制经过每个点的光滑曲线的原理,本文会重点介绍一下在Android中如何从零开始使用贝塞尔方法编写一个光滑曲线图控件。程序的设计图如下:

一、样式控制类ChartStyle

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26      /** 网格线颜色 */      private int gridColor ;      /** 坐标轴分隔线宽度 */      private int axisLineWidth ;        /** 横坐标文本大小 */      private float horizontalLabelTextSize ;      /** 横坐标文本颜色 */      private int horizontalLabelTextColor ;      /** 横坐标标题文本大小 */      private float horizontalTitleTextSize ;      /** 横坐标标题文本颜色 */      private int horizontalTitleTextColor ;      /** 横坐标标题文本左间距 */      private int horizontalTitlePaddingLeft ;      /** 横坐标标题文本右间距 */      private int horizontalTitlePaddingRight ;        /** 纵坐标文本大小 */      private float verticalLabelTextSize ;      /** 纵坐标文本上下间距 */      private int verticalLabelTextPadding ;      /** 纵坐标文本左右间距相对文本的比例 */      private float verticalLabelTextPaddingRate ;      /** 纵坐标文本颜色 */      private int verticalLabelTextColor ;

二、基础数据集合ChartData

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24      private Marker marker ;      private List seriesList ;      private List xLabels ;      private List yLabels ;      private List </span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">titles</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">maxValueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">minValueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">maxPointsCount</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">LabelTransform </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">labelTransform</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 纵坐标显示文本的数量 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">yLabelCount</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 使用哪一个series的横坐标来显示横坐标文本 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">xLabelUsageSeries</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">interface</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">LabelTransform</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">{</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 纵坐标显示的文本 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">String</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">verticalTransform</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">valueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 横坐标显示的文本 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">String</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">horizontalTransform</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">valueX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 是否显示指定位置的横坐标文本 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">boolean</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">labelDrawing</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">valueX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">}</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 2.1、坐标轴标签Label</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 5 6 7 8 9 10 </td> <td class="crayon-code" style="border: 0px; width: 546px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">       </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本对应的坐标X*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本对应的坐标Y*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 文本对应的绘制坐标Y */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">drawingY</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本对应的实际数值*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">value</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">String</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">text</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">2.2、时间序列Series</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 2 3 4 5 6 7 8 </td> <td class="crayon-code" style="border:0px; width:546px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 序列曲线的标题 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">Title </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">title</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 序列曲线的颜色 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">color</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 序列点集合 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">List</span> <span class="crayon-e " style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important"><Point></span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">points</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 贝塞尔曲线点 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">List</span> <span class="crayon-e " style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important"><Point></span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">besselPoints</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 2.3、横向标题Title</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 </td> <td class="crayon-code" style="border: 0px; width: 546px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本对应的坐标X*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">textX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本对应的坐标Y*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">textY</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">String</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">text</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**圆点对应的坐标X*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">circleX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**圆点对应的坐标Y*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">circleY</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**颜色*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">color</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**圆点的半径*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">radius</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**图形标注与文本的间距*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">circleTextPadding</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**文本区域*/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Rect </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">textRect</span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Rect</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">2.4、数据结点Point</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 2 3 4 5 6 7 8 9 10 </td> <td class="crayon-code" style="border:0px; width:546px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/**是否在图形中绘制出此结点*/</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">boolean</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">willDrawing</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 在canvas中的X坐标 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">x</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 在canvas中的Y坐标 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">y</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 实际的X数值 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">valueX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 实际的Y数值 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">valueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 三、光滑曲线图BesselChartView</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 </td> <td class="crayon-code" style="border: 0px; width: 546px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 通用画笔 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Paint </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">paint</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 曲线的路径,用于绘制曲线 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Path </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">curvePath</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 曲线图绘制的计算信息 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">BesselCalculator </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">calculator</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 曲线图的样式 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">ChartStyle </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">style</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 曲线图的数据 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">ChartData </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">data</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 手势解析 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">GestureDetector </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">detector</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 是否绘制全部贝塞尔结点 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">boolean</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">drawBesselPoint</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 滚动计算器 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Scroller </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">scroller</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-n" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; font-style: italic; color: rgb(102, 102, 102) !important;">@Override</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">protected</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">void</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">onDraw</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Canvas </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">data</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getSeriesList</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">size</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">==</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">return</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">calculator</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">ensureTranslation</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">translate</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">calculator</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getTranslateX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">drawGrid</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">drawCurveAndPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">drawMarker</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">drawHorLabels</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">四、核心类BesselCalculator</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 </td> <td class="crayon-code" style="border:0px; width:546px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 纵坐标文本矩形 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">Rect </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">verticalTextRect</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 横坐标文本矩形 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">Rect </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">horizontalTextRect</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 横坐标标题文本矩形 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">Rect </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">horizontalTitleRect</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 图形的高度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">height</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 图形的宽度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">width</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 纵轴的宽度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">yAxisWidth</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 纵轴的高度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">yAxisHeight</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 横轴的高度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">xAxisHeight</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 横轴的标题的高度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">xTitleHeight</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 横轴的长度 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">xAxisWidth</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 灰色竖线顶点 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">Point</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">[</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">]</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">gridPoints</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 画布X轴的平移,用于实现曲线图的滚动效果 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">translateX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 用于测量文本区域长宽的画笔 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">Paint </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">paint</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">ChartStyle </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">style</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">ChartData </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">data</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/** 光滑因子 */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">private</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">smoothness</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">/**</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">     * 计算图形绘制的参数信息</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">     * </span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">     * @param width 曲线图区域的宽度</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">     */</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">void</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">compute</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">width</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">{</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-r" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">this</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">width</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">=</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">width</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-r" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">this</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">translateX</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">=</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">computeVertcalAxisInfo</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">// 计算纵轴参数</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">computeHorizontalAxisInfo</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">// 计算横轴参数</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">computeTitlesInfo</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">// 计算标题参数</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">computeSeriesCoordinate</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">// 计算纵轴参数</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">computeBesselPoints</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">// 计算贝塞尔结点</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">        </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">computeGridPoints</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-c" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(153,153,153)!important; font-style:italic!important">// 计算网格顶点</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">    </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">}</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 五、核心代码:</p> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 5.1 计算光滑曲线的贝塞尔控制点</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 </td> <td class="crayon-code" style="border: 0px; width: 682px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 计算贝塞尔结点 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">void</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeBesselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">for</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Series </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">series</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">:</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">data</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getSeriesList</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">List</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">series</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getBesselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">List</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">ArrayList</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">for</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">point</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">:</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">series</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">valueY</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">count</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">size</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">count</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"><</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">continue</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">clear</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">for</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"><</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">count</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">++</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">==</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">||</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">==</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">count</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeUnMonotonePoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">else</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">>=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">// 极值点</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeUnMonotonePoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">else</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeMonotonePoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">                </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span>   <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/** 计算非单调情况的贝塞尔结点 */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">void</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeUnMonotonePoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">List</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">List</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">==</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">smoothness</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">else</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">==</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">size</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">smoothness</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">else</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">smoothness</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">smoothness</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span>   <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">/**</span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">     * 计算单调情况的贝塞尔结点</span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">     * </span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">     * @param i</span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">     * @param points</span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">     * @param besselPoints</span> <span class="crayon-c" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(153, 153, 153) !important; font-style: italic !important;">     */</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">private</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">void</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeMonotonePoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">int</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">List</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">List</span> <span class="crayon-e " style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;"><Point></span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">points</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">get</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">i</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">k</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">b</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">k</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p01</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p01</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">b</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">/</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">k</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">smoothness</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p01</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">k</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p01</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">b</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p01</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p11</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">new</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Point</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p11</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p2</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">-</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p1</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">smoothness</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p11</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">y</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">=</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">k</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">*</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p11</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">x</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-o" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">+</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">b</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">besselPoints</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">add</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">p11</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">5.2、坐标变换。由于手机屏幕的坐标是朝右下方的,而我们实际显示的时候是朝左上方的,所以需要进行坐标变换,代码:</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 2 </td> <td class="crayon-code" style="border:0px; width:825px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">          </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">ratio</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">=</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">point</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">valueY</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">-</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">data</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">getMinValueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">/</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">data</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">getMaxValueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">-</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">data</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">getMinValueY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">          </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">point</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">y</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">=</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">maxCoordinateY</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">-</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">maxCoordinateY</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">-</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">minCoordinateY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">*</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">ratio</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 5.3、实现拖动</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 </td> <td class="crayon-code" style="border: 0px; width: 546px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-n" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; font-style: italic; color: rgb(102, 102, 102) !important;">@Override</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">boolean</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">onTouchEvent</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">MotionEvent </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">event</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">return</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">detector</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">onTouchEvent</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">event</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">实现OnGestureListener的OnScroll方法</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 2 3 4 5 6 7 8 9 10 </td> <td class="crayon-code" style="border:0px; width:748px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-n" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; font-style:italic; color:rgb(102,102,102)!important">@Override</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">boolean</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">onScroll</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">MotionEvent </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">e1</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">MotionEvent </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">e2</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">distanceX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">distanceY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">{</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-st" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">if</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">Math</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">abs</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">distanceX</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">/</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">distanceY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">></span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">1</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">{</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                    </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">getParent</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">requestDisallowInterceptTouchEvent</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">true</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                    </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">BesselChartView</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">this</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">calculator</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">move</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">distanceX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                    </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">invalidate</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                    </span> <span class="crayon-st" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">return</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">true</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">}</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-st" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">return</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">false</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">}</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 在BesselChartView的onDraw方法中调用如下代码来平移画布实现拖动</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 </td> <td class="crayon-code" style="border: 0px; width: 546px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">canvas</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">translate</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">calculator</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getTranslateX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-cn" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 153, 153) !important;">0</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;"> </p> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">5.4、实现滑动</p> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">只实现拖动会让人有一种不流畅的感觉,所以还需要实现滑动,考虑到应用要支持api level 8,可以使用Scroller来实现(api level 9以后google推荐使用OverScroller来实现,OverScroller允许滚动超出边界,可以实现回弹效果), OnGestureListener的onFling和onDown方法:</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 2 3 4 5 6 7 8 9 10 11 12 13 </td> <td class="crayon-code" style="border:0px; width:933px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-n" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; font-style:italic; color:rgb(102,102,102)!important">@Override</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">boolean</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">onFling</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">MotionEvent </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">e1</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">MotionEvent </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">e2</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">velocityX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">float</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">velocityY</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">{</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">scroller</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">fling</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">BesselChartView</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">this</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">calculator</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">getTranslateX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">int</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">velocityX</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">-</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">getWidth</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">ViewCompat</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">postInvalidateOnAnimation</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">BesselChartView</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">this</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-st" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">return</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">true</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">}</span>   <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-n" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; font-style:italic; color:rgb(102,102,102)!important">@Override</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-m" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(128,0,128)!important">public</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">boolean</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">onDown</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-i" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:inherit!important">MotionEvent</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">e</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">{</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">scroller</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">forceFinished</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">true</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">ViewCompat</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">postInvalidateOnAnimation</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">BesselChartView</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">this</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">                </span> <span class="crayon-st" style="margin:0px; padding:0px; border:0px; vertical-align:baseline; font-family:inherit; height:inherit; font-size:inherit!important; line-height:inherit!important; font-weight:bold!important">return</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-t" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:bold!important; color:rgb(128,0,128)!important">true</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">            </span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">}</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 获取scroller计算的偏移,同时刷新UI,computeScroll()会在View的onDraw方法之前执行</p> <span class="crayon-title" style="margin:0px; border:0px; vertical-align:baseline; font-family:inherit; float:left; height:inherit; padding:0px 4px!important; line-height:inherit!important; font-weight:inherit!important; color:rgb(102,102,102)!important"></span> <span class="crayon-language" style="margin:0px; border:0px; vertical-align:baseline; font-family:inherit; float:left; height:inherit; padding:0px 8px 0px 4px!important; line-height:inherit!important; font-weight:inherit!important; color:rgb(102,102,102)!important">Java</span> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 5 6 7 </td> <td class="crayon-code" style="border: 0px; width: 546px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-n" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; font-style: italic; color: rgb(102, 102, 102) !important;">@Override</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-m" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(128, 0, 128) !important;">public</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">void</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeScroll</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-st" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">if</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">scroller</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">computeScrollOffset</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">{</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">calculator</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">moveTo</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">scroller</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">getCurrX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">            </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">ViewCompat</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">.</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">postInvalidateOnAnimation</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-r" style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; font-weight: bold !important;">this</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">;</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">        </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;">    </span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">}</span> </td> </tr> </tbody> </table> <p style="margin-top: 0px; margin-bottom: 1.714285714rem; padding-top: 0px; padding-bottom: 0px; border: 0px; font-size: 14px; vertical-align: baseline; line-height: 24px; color: rgb(68, 68, 68); font-family: 'Open Sans', Helvetica, Arial, sans-serif;">5.5、实现滚动动画</p> <table class="crayon-table " style="margin-left:0px; font-size:0.857142857rem; vertical-align:baseline; color:rgb(117,117,117); line-height:2; margin-top:0px!important; margin-right:0px!important; margin-bottom:0px!important; padding:0px!important; border:none!important; border-collapse:collapse!important; border-spacing:0px!important; width:auto!important; background:none!important"> <tbody style="margin:0px; padding:0px; border:0px; font-size:12px; vertical-align:baseline"> <tr class="crayon-row" style="margin:0px!important; padding:0px!important; border:none!important; vertical-align:top!important; background:0px 50%"> <td class="crayon-nums " style="border:0px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background-color:rgb(238,238,238)!important"> 1 </td> <td class="crayon-code" style="border:0px; width:546px; margin:0px!important; padding:0px!important; vertical-align:top!important; font-family:Monaco,MonacoRegular,'Courier New',monospace!important; background:0px 50%"> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">scroller</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-e" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:teal!important">startScroll</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">(</span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">-</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">calculator</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">.</span> <span class="crayon-v" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,45,122)!important">xAxisWidth</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-o" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important">/</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">2</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">0</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">,</span> <span class="crayon-h" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,111,224)!important"> </span> <span class="crayon-cn" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(0,153,153)!important">7000</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">)</span> <span class="crayon-sy" style="margin:0px; padding:0px; border:0px; font-size:inherit!important; vertical-align:baseline; font-family:inherit; height:inherit; line-height:inherit!important; font-weight:inherit!important; color:rgb(51,51,51)!important">;</span> </td> </tr> </tbody> </table> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 六、使用到的绘图相关的api</p> <p style="margin-top:0px; margin-bottom:1.714285714rem; padding-top:0px; padding-bottom:0px; border:0px; font-size:14px; vertical-align:baseline; line-height:24px; color:rgb(68,68,68); font-family:'Open Sans',Helvetica,Arial,sans-serif"> 6.1 Canvas 画布</p> <table class="crayon-table " style="margin-left: 0px; font-size: 0.857142857rem; vertical-align: baseline; color: rgb(117, 117, 117); line-height: 2; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: none !important; border-collapse: collapse !important; border-spacing: 0px !important; width: auto !important; background: none !important;"> <tbody style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; vertical-align: baseline;"> <tr class="crayon-row" style="margin: 0px !important; padding: 0px !important; border: none !important; vertical-align: top !important; background: 0px 50%;"> <td class="crayon-nums " style="border: 0px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background-image: initial; background-attachment: initial; background-color: rgb(238, 238, 238) !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 50%; background-repeat: initial;"> 1 2 3 4 5 6 </td> <td class="crayon-code" style="border: 0px; width: 555px; margin: 0px !important; padding: 0px !important; vertical-align: top !important; font-family: Monaco, MonacoRegular, 'Courier New', monospace !important; background: 0px 50%;"> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">translate</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">dx</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">dy</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">drawLine</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">startX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">startY</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">stopX</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-t" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: bold !important; color: rgb(128, 0, 128) !important;">float</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">stopY</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Paint </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">paint</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">)</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">drawBitmap</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">(</span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Bitmap </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">bitmap</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Rect </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">src</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> <span class="crayon-e" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: teal !important;">Rect </span> <span class="crayon-v" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 45, 122) !important;">dst</span> <span class="crayon-sy" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(51, 51, 51) !important;">,</span> <span class="crayon-h" style="margin: 0px; padding: 0px; border: 0px; font-size: inherit !important; vertical-align: baseline; font-family: inherit; height: inherit; line-height: inherit !important; font-weight: inherit !important; color: rgb(0, 111, 224) !important;"> </span> </td> </tr> </tbody> </table> <!--PC和WAP自适应版--> <p align="center" class="pageLink"></p> <div id="wen"></div> <!--<div style="height: 280px;">ads</div>--> <h2><a href="/R/8Bz8WG6Ldx/">更多相关文章</a></h2> <ol> <li><a href="/android/bcj5a.html" title="【转载】Android绘图系列(五)——绘制文本">【转载】Android绘图系列(五)——绘制文本</a></li><li><a href="/android/bcjlu.html" title="Android 的坐标系及矩阵变换">Android 的坐标系及矩阵变换</a></li><li><a href="/android/bcjln.html" title="android实现文本朗读,TextToSpeech">android实现文本朗读,TextToSpeech</a></li><li><a href="/android/bci85.html" title="Android进阶之光读书笔记:View体系(一) View与 ViewGroup、View坐标和View滑动;">Android进阶之光读书笔记:View体系(一) View与 ViewGroup、View坐标</a></li><li><a href="/android/bch6l.html" title="Android开发:文本实现两端对齐">Android开发:文本实现两端对齐</a></li><li><a href="/android/bchzv.html" title="获取组件坐标系">获取组件坐标系</a></li></ol> <h2>随机推荐</h2> <ol> <li> <a href="/android/kh7g5.html" title='Android(安卓)5.0 如何正确启用isLoggable(二)__原理分析' target="_blank">Android(安卓)5.0 如何正确启用isLoggabl</a></li> <li> <a href="/android/kh7g6.html" title='Mac 打 Android(安卓)包遇到 open too many files 解决办法' target="_blank">Mac 打 Android(安卓)包遇到 open too ma</a></li> <li> <a href="/android/kh7g7.html" title='Android(安卓)Studio3.6新特性:视图绑定ViewBinding使用指南(Java版例程)' target="_blank">Android(安卓)Studio3.6新特性:视图绑定Vi</a></li> <li> <a href="/android/kh7g8.html" title='Android开发重修' target="_blank">Android开发重修</a></li> <li> <a href="/android/kh7g9.html" title='Android(安卓)Camera HAL浅析' target="_blank">Android(安卓)Camera HAL浅析</a></li> <li> <a href="/android/kh7ha.html" title='Android(安卓)应用软件开发(九)控件续' target="_blank">Android(安卓)应用软件开发(九)控件续</a></li> <li> <a href="/android/kh7hb.html" title='Android(安卓)百度地图使几点始终在合适的屏幕范围内显示' target="_blank">Android(安卓)百度地图使几点始终在合适</a></li> <li> <a href="/android/kh7hc.html" title='在Android(安卓)Studio中使用Android-PullToRefresh Library' target="_blank">在Android(安卓)Studio中使用Android-Pul</a></li> <li> <a href="/android/kh7hd.html" title='android 的webView的透明设置' target="_blank">android 的webView的透明设置</a></li> <li> <a href="/android/kh7he.html" title='Android(安卓)模拟器运行编译后的源码' target="_blank">Android(安卓)模拟器运行编译后的源码</a></li> </ol> </div> <div class="next-prev-posts clearfix"> </div> </div> <div class="clear"></div> </div> <!--<div class="widget"><h3><span>热门专题</span></h3> <div class="widge_tags"> <div class="tag-items" style="float: left;"> <a href="/" title=""></a> </div> </div> </div>--> </div> </div> </div> <div class="clearfix"></div> <div id="footer" class="two-s-footer"> <div class="footer-box"> <div class="container"> <div class="row" style="padding-left: 15px;padding-right: 15px;"> <div class="nav-footer"> <a href="/">Home</a> </div> <div class="copyright-footer"> <p>Powered By 16lz.com</p> </div> </div> </div> </div> </div> <div style="display:none"> <script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script> <script>LA.init({id: "1x5g7IvCFerRo43g",ck: "1x5g7IvCFerRo43g"})</script> </div> <script src="/theme/szd/js/echo.js"></script> <script src="/theme/szd/js/bestai_code.js"></script> </body> </html>