BezierMaker
??de Casteljau????????????????????1-7???????????? ?????????????Bezier?????????????Bezier??????????????????????????????? ?????????——??Bezier?????????
Features
- ??????????
- ??1??7?????????????????????N??????
- ?????????
- ????????????????
- ????????????????
- ???????????
- ?????????
- ???????????
ScreenShot
Demo
Java:
public class MainActivity extends Activity {
BezierView mBezierView
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main)
mBezierView = (BezierView) findViewById(R.id.bezier);
}
public void start(View view) {
mBezierView.start();
}
public void stop(View view) {
mBezierView.stop();
}
public void add(View view) {
mBezierView.addPoint();
}
public void del(View view) {
mBezierView.delPoint();
}
}
Methods:
method ?? | description ?? |
---|---|
void start() | ????????required? |
void stop() | ????????optional? |
boolean addPoint() | ??????optional? |
boolean delPoint() | ??????optional? |
int getOrder() | ??????????optional? |
void setRate(int rate) | ???????optional? |
void setTangent(boolean tangent) | ?????????optional? |
void setLoop(boolean loop) | ???????optional? |
void setOrder(int order) | ??????????optional? |
About
License
Copyright (C) 2016 [email protected] Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.