Now you can download a copy of these docs so you can use them offline! Download now
Threshold.cpp
00001 /*----------------------------------------------------------------------------*/ 00002 /* Copyright (c) FIRST 2008. All Rights Reserved. */ 00003 /* Open Source Software - may be modified and shared by FRC teams. The code */ 00004 /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */ 00005 /*----------------------------------------------------------------------------*/ 00006 00007 #include "Threshold.h" 00008 00009 Threshold::Threshold(int new_plane1Low, int new_plane1High, int new_plane2Low, 00010 int new_plane2High, int new_plane3Low, int new_plane3High) 00011 { 00012 plane1Low = new_plane1Low; 00013 plane1High = new_plane1High; 00014 plane2Low = new_plane2Low; 00015 plane2High = new_plane2High; 00016 plane3Low = new_plane3Low; 00017 plane3High = new_plane3High; 00018 }
Generated on Thu Jan 12 2012 22:35:24 for WPILibC++ by
1.7.1