logo.c

来自「卫星仿真软件 卫星仿真软件 卫星仿真软件」· C语言 代码 · 共 63 行

C
63
字号
/* ***************************************************** * *  SaVi by Robert Thurman (thurman@geom.umn.edu) and *          Patrick Worfolk (worfolk@alum.mit.edu). * *  Copyright (c) 1997 by The Geometry Center. *  This file is part of SaVi.  SaVi is free software; *  you can redistribute it and/or modify it only under *  the terms given in the file COPYRIGHT which you should *  have received along with this file.  SaVi may be *  obtained from: *  http://savi.sourceforge.net/ *  http://www.geom.uiuc.edu/locate/SaVi * ***************************************************** * * logo.c * * $Id: logo.c,v 1.6 2005/02/01 22:30:28 lloydwood Exp $ */#include <stdlib.h>#include "gv_utils.h"#include "constants.h"#include "globals.h"#include "savi.h"static unsigned int logo_geom_exists = FALSE;/* * logo_on_cmd * * Display axes in geomview */char *logo_on_cmd(int argc, char *argv[]){  if (logo_geom_exists)    return EMPTY_str;  logo_geom_exists = TRUE;  gv_create_alienh("Logo", "logo_h");  return EMPTY_str;}/* * logo_off_cmd * * Deletes logo in Geomview */char *logo_off_cmd(int argc, char *argv[]){  if (!logo_geom_exists)    return EMPTY_str;  logo_geom_exists = FALSE;  gv_delete_geom("Logo");  return EMPTY_str;}

⌨️ 快捷键说明

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