๐†๐Œด๐Œน๐Œป๐Œฐ:Lua-Logo.svg

Page contents not supported in other languages.
๐†๐‚๐Œฐ๐Œผ Wikipedia

๐ƒ๐‰ ๐Œณ๐Œฐ๐„๐Œฐ ๐Œน๐ƒ๐„ ๐†๐‚๐Œฐ๐Œผ Wikimedia Commons ๐Œพ๐Œฐ๐Œท ๐Œผ๐Œฐ๐Œฒ ๐Œฑ๐‚๐Œฟ๐Œบ๐Œพ๐Œฐ๐Œณ๐Œฐ ๐†๐‚๐Œฐ๐Œผ ๐Œฐ๐Œฝ๐Œธ๐Œฐ๐‚๐Œฐ๐Œน๐Œผ ๐†๐Œฐ๐Œฟ๐‚๐Œฐ๐…๐Œฐ๐Œฟ๐‚๐€๐‰๐Œผ. ๐Œฒ๐Œฐ๐ƒ๐Œบ๐Œด๐Œน๐‚๐Œด๐Œน๐Œฝ๐ƒ ๐Œฐ๐Œฝ๐Œฐ ๐ƒ๐Œด๐Œน๐Œฝ๐Œฐ๐Œผ๐Œผ๐Œฐ ๐Œณ๐Œฐ๐„๐Œฐ ๐ƒ๐Œบ๐Œด๐Œน๐‚๐Œด๐Œน๐Œฝ๐Œน๐Œป๐Œฐ๐Œฟ๐Œฑ๐Œฐ ๐Œพ๐Œฐ๐Œน๐Œฝ๐Œฐ๐‚ ๐Œฐ๐„๐Œฐ๐Œฟ๐Œฒ๐Œน๐Œธ๐ƒ ๐Œน๐ƒ๐„ ๐Œฟ๐†.

๐Œผ๐Œฐ๐Œฟ๐‚๐Œฒ๐Œฟ๐ƒ ๐ƒ๐Œบ๐Œด๐Œน๐‚๐Œด๐Œน๐Œฝ๐ƒ

๐ƒ๐Œบ๐Œด๐Œน๐‚๐Œด๐Œน๐Œฝ๐ƒ
English: Logo from the programming language Lua
Deutsch: Logo der Scriptsprache Lua
Date
๐Œฑ๐‚๐Œฟ๐Œฝ๐Œฝ๐Œฐ

http://www.lua.org/images/

English: svg from PostScript Source (see below) created from Lumu
Deutsch: svg aus dem PostScript-Quelltext (siehe unten) erzeugt von Lumu
๐Œฑ๐‰๐Œบ๐Œฐ๐‚๐Œด๐Œน๐ƒ
English: Alexandre Nakonechnyj (Graphic design) and Lua team (PostScript code)
Deutsch: Alexandre Nakonechnyj (Grafik-Design) und Lua-Team (PostScript-Code)
SVG genesis
InfoField
 
The SVG code is valid.
 
This text-logo was created with Adobe Illustrator.

Licensing

Public domain
This logo image consists only of simple geometric shapes or text. It does not meet the threshold of originality needed for copyright protection, and is therefore in the public domain. Although it is free of copyright restrictions, this image may still be subject to other restrictions. See WP:PD ยง Fonts and typefaces or Template talk:PD-textlogo for more information.
Trademarked This work includes material that may be protected as a trademark in some jurisdictions. If you want to use it, you have to ensure that you have the legal right to do so and that you do not infringe any trademark rights. See our general disclaimer.
This tag does not indicate the copyright status of the attached work. A normal copyright tag is still required. See Commons:Licensing.

PostScript source

%!PS-Adobe-2.0 EPSF-2.0
%%Title: Lua-Logo
%%Creator: lua@tecgraf.puc-rio.br
%%CreationDate: Wed Nov 29 19:02:41 EDT 2000
%%BoundingBox: -45 0 1035 1080
%%Pages: 1
%%EndComments
%%EndProlog

%------------------------------------------------------------------------------
% Graphic design by Alexandre Nakonechnyj.
% PostScript programming by the Lua team.
% This code is hereby placed in the public domain.
%
% Permission is hereby granted, without written agreement and without license
% or royalty fees, to use, copy, and distribute this logo for any purpose,
% including commercial applications, subject to the following conditions:
%
% * The origin of this logo must not be misrepresented; you must not
%   claim that you drew the original logo. We recommend that you give credit
%   to the graphics designer in all printed matter that includes the logo.
%
% * The only modification you can make is to adapt the orbiting text to
%   your product name.
%
% * The logo can be used in any scale as long as the relative proportions
%   of its elements are maintained.
%------------------------------------------------------------------------------

/PLANETCOLOR    {0 0 0.5 setrgbcolor} bind def
/HOLECOLOR      {1.0 setgray} bind def
/ORBITCOLOR     {0.5 setgray} bind def
/LOGOFONT       {/Helvetica 0.90} def
/LABELFONT      {/Helvetica 0.36} def
%------------------------------------------------------------------------------
/MOONCOLOR      {PLANETCOLOR} bind def
/LOGOCOLOR      {HOLECOLOR} bind def
/LABELCOLOR     {ORBITCOLOR} bind def

/LABELANGLE     125 def
/LOGO           (Lua) def

/DASHANGLE      10 def
/HALFDASHANGLE  DASHANGLE 2 div def

% moon radius. planet radius is 1.
/r 1 2 sqrt 2 div sub def

/D {0 360 arc fill} bind def
/F {exch findfont exch scalefont setfont} bind def

% place it nicely on the paper
/RESOLUTION     1024 def
RESOLUTION 2 div dup translate
RESOLUTION 2 div 2 sqrt div dup scale

%-------------------------------------------------------------------- planet --
PLANETCOLOR
0 0 1 D
%---------------------------------------------------------------------- hole --
HOLECOLOR
1 2 r mul sub dup r D
%---------------------------------------------------------------------- moon --
MOONCOLOR
1 1 r D
%---------------------------------------------------------------------- logo --
LOGOCOLOR
LOGOFONT
F
LOGO stringwidth pop 2 div neg
-0.5 moveto
LOGO show
%--------------------------------------------------------------------- orbit --
ORBITCOLOR
0.03 setlinewidth
[1 r add 3.1415926535 180 div HALFDASHANGLE mul mul] 0 setdash
newpath
0 0
1 r add
3 copy
27 57
arcn
stroke

%----------------------------------------------------------------- copyright --
/COPYRIGHT
(Graphic design by A. Nakonechnyj. Copyright (c) 1998, All rights reserved.)
def

LABELCOLOR
LOGOFONT
32 div
F
2 sqrt 0.99 mul
dup
neg
moveto
COPYRIGHT
90 rotate

%show
%---------------------------------------------------------------------- done --
showpage

%%Trailer
%%EOF

Original upload log

Transferred from de.wikipedia to Commons by Wdwdbot using script bot_filetrans.pl.

The original description page was here. All following user names refer to de.wikipedia.
  • 2010-08-19 09:08:32 Lumu (2085 Bytes) {{Information |Beschreibung = Logo der Scriptsprache [[Lua]] |Quelle = http://www.lua.org/images/<br />svg aus dem PostScript-Quelltext (siehe unten) erzeugt von [[Benutzer:Lumu|Lumu]] |Urheber = Alexandre Nakonechnyj (Grafik-Design) und Lua-Team (PostScript-Code)

Captions

Add a one-line explanation of what this file represents
Logo for the programming language Lua

Items portrayed in this file

depicts English

inception English

29 ๐Œฝ๐Œฐ๐Œฟ๐Œฑ๐Œฐ๐Œน๐Œผ๐Œฑ๐Œฐ๐Œน๐‚ 2000

media type English

image/svg+xml

๐†๐Œฐ๐Œพ๐Œป๐Œฐ๐ƒ๐€๐Œน๐Œป๐Œป

๐Œฐ๐„๐„๐Œด๐Œบ ๐Œณ๐Œฐ๐Œฒ/๐Œผ๐Œด๐Œป ๐Œณ๐Œฟ ๐Œฑ๐Œฐ๐Œฝ๐Œณ๐…๐Œพ๐Œฐ๐Œฝ ๐†๐Œฐ๐Œพ๐Œป ๐ƒ๐…๐Œฐ๐ƒ๐…๐Œด ๐Œฒ๐Œฐ๐Œฑ๐Œฐ๐Œน๐‚๐Œท๐„๐Œน๐Œณ๐Œฐ ๐Œน๐Œฝ ๐Œธ๐Œฐ๐Œผ๐Œผ๐Œฐ ๐Œผ๐Œด๐Œป๐Œฐ.

๐Œผ๐Œด๐Œป๐Œป๐Œด๐Œน๐„๐Œน๐Œป๐Œฐ ๐†๐‚๐Œน๐ƒ๐Œฐ๐Œท๐„๐ƒ๐…๐Œฐ๐Œท๐ƒ๐„๐Œฟ๐ƒ๐Œฑ๐‚๐Œฟ๐Œบ๐Œพ๐Œฐ๐Œฝ๐Œณ๐ƒ/๐Œฑ๐‚๐Œฟ๐Œบ๐Œพ๐Œฐ๐Œฝ๐Œณ๐Œน๐…๐Œฐ๐Œฟ๐‚๐Œณ
๐Œฝ๐Œฟ02:49, 7 ๐Œฐ๐†๐„๐Œฟ๐Œผ๐Œฐ ๐Œพ๐Œน๐Œฟ๐Œป๐Œด๐Œน๐ƒ 2015๐Œป๐Œด๐Œน๐„๐Œน๐Œป๐Œฐ๐†๐‚๐Œน๐ƒ๐Œฐ๐Œท๐„๐ƒ ๐Œฟ๐ƒ๐Œผ๐Œด๐‚๐Œพ๐Œฐ ๐Œน๐Œฝ 02:49, 7 ๐Œฐ๐†๐„๐Œฟ๐Œผ๐Œฐ ๐Œพ๐Œน๐Œฟ๐Œป๐Œด๐Œน๐ƒ 2015947 ร— 947 (2 KB)WdwdbotBot Move: Original uploader of this revision (#1) was Lumu at de.wikipedia

There are no pages that use this file.

๐Œฑ๐‚๐Œฟ๐Œบ๐Œด๐Œน๐Œฝ๐ƒ ๐†๐Œฐ๐Œพ๐Œป๐Œด ๐Œฐ๐Œป๐Œป๐Œฐ๐Œน๐Œผ ๐ƒ๐„๐Œฐ๐Œณ๐Œน๐Œผ

๐Œธ๐‰ ๐Œน๐†๐„๐Œฟ๐Œผ๐‰๐Œฝ๐Œฐ ๐Œฐ๐Œฝ๐Œธ๐Œฐ๐‚๐Œฐ ๐…๐Œน๐Œบ๐Œพ๐Œฐ ๐Œฑ๐‚๐Œฟ๐Œบ๐Œพ๐Œฐ๐Œฝ๐Œณ ๐Œธ๐Œน๐ƒ ๐†๐Œฐ๐Œพ๐Œป๐Œน๐ƒ:

View more global usage of this file.

๐Œฟ๐†๐Œฐ๐‚๐Œณ๐Œฐ๐„๐Œฐ

๐Œฒ๐Œฐ๐Œฝ๐Œฟ๐Œผ๐Œฐ๐Œฝ ๐†๐‚๐Œฐ๐Œผ "https://got.wikipedia.org/wiki/๐†๐Œด๐Œน๐Œป๐Œฐ:Lua-Logo.svg"