mxconstantcostfunction.java

来自「经典的java图像处理程序源码」· Java 代码 · 共 37 行

JAVA
37
字号
/** * $Id: mxConstantCostFunction.java,v 1.1 2008/09/26 14:47:40 gaudenz Exp $ * Copyright (c) 2007, Gaudenz Alder */package com.mxgraph.algebra;import com.mxgraph.view.mxCellState;/** * Implements a cost function for a constant cost per traversed cell. */public class mxConstantCostFunction implements mxICostFunction{	/**	 * 	 */	protected double cost = 0;	/**	 * 	 * @param cost	 */	public mxConstantCostFunction(double cost)	{		this.cost = cost;	}	/**	 *	 */	public double getCost(mxCellState state)	{		return cost;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?