代码搜索:effect
找到约 4,591 项符合「effect」的源代码
代码结果 4,591
www.eeworm.com/read/340194/12174250
in cssproperties.in
#
# all valid CSS2 properties.
#
# aural properties are commented out, as we don't support them anyway.
#
# some properties are used in khtml, but are not part of CSS. They are used to get
# HTM
www.eeworm.com/read/290499/8479905
c lowp.c
/*
* Sound Tools Low-Pass effect file.
*
* (C) 2000 Chris Bagwell
* See License file for further copyright information.
*
* Algorithm: Recursive single pole lowpass
www.eeworm.com/read/433114/8544729
m s_wavelet_stretch.m
function wavelets=s_wavelet_stretch(wavelet,angles,varargin)
% Stretch a wavelet to simulate the effect of NMO
% Stretching is achieved by changing times from t ==> t/cos(angle)
%
% Written by: E. R.
www.eeworm.com/read/287415/8687117
c sigdemo3.c
/* sigdemo3.c
* purpose: show answers to signal questions
* question1: does the handler stay in effect after a signal arrives?
* question2: what if a signalX arrives while handling signalX?
*
www.eeworm.com/read/380481/9145716
c sigdemo3.c
/* sigdemo3.c
* purpose: show answers to signal questions
* question1: does the handler stay in effect after a signal arrives?
* question2: what if a signalX arrives while handling signalX?
*
www.eeworm.com/read/374502/9402308
motd
# Here's the plan
# Output the MOTD for the user.
# Load this in "local" for maximum effect.
load less
@ date = ftime(~/.ircII.motd)
@ fdate = ftime($irclib()/ircII.motd)
if (fdate && (date < fdate))
www.eeworm.com/read/373153/9472358
java antialiasingdemo.java
// these properties seem to have no effect.
import java.awt.*;
import javax.swing.*;
import java.util.Properties;
public class AntiAliasingDemo {
static {
System.setProperty ("apple.awt
www.eeworm.com/read/371706/9540898
m sgray.m
function sgray(alpha)
%SGRAY: Non-linear transformation of a color gray colormap.
% Same effect as clipping.
%
% sgray(alpha)
%
% IN: alpha: degree of clustering of B&W (try 5)
%
%
% Author(s):
www.eeworm.com/read/371680/9542365
m plus.m
function y = plus(x,y)
% Addition of ADTAYL objects.
% Either of x or y can be numeric, and either can be scalar (1 by 1). If
% neither is scalar, they must have the same size.
% In effect, a nume
www.eeworm.com/read/356335/10230849
cc biginteger.cc
#include "BigInteger.hh"
void BigInteger::operator =(const BigInteger &x) {
// Calls like a = a have no effect
if (this == &x)
return;
// Copy sign
sign = x.sign;
// Copy the rest
mag = x.mag