repo stringclasses 1k
values | file_url stringlengths 96 373 | file_path stringlengths 11 294 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 6
values | commit_sha stringclasses 1k
values | retrieved_at stringdate 2026-01-04 14:45:56 2026-01-04 18:30:23 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/common/AccessToken.java | src/main/java/org/jeewx/api/core/common/AccessToken.java | package org.jeewx.api.core.common;
import com.alibaba.fastjson.JSONObject;
public class AccessToken {
private String appid;
private String appscret;
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid;
}
public String getAppscret() {
return appscret;
}... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/common/MyX509TrustManager.java | src/main/java/org/jeewx/api/core/common/MyX509TrustManager.java | package org.jeewx.api.core.common;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import javax.net.ssl.X509TrustManager;
public class MyX509TrustManager
implements X509TrustManager
{
public void checkClientTrusted(X509Certificate[] chain, String authType)
throws Cer... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/common/JSONHelper.java | src/main/java/org/jeewx/api/core/common/JSONHelper.java | package org.jeewx.api.core.common;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.apache.commons.beanutils.BeanUti... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/common/util/StringTemplateLoader.java | src/main/java/org/jeewx/api/core/common/util/StringTemplateLoader.java | package org.jeewx.api.core.common.util;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.util.HashMap;
import java.util.Map;
import freemarker.cache.TemplateLoader;
/**
*
* @author 张代浩
*
*/
public class StringTemplateLoader implements TemplateLoader {
private static... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/common/util/WeixinUtil.java | src/main/java/org/jeewx/api/core/common/util/WeixinUtil.java | package org.jeewx.api.core.common.util;
import java.util.HashMap;
import java.util.Map;
public class WeixinUtil {
public static String parseWeiXinHttpUrl(String url,Map<String, Object> paras) {
return FreemarkerUtil.parseTemplateContent(url, paras);
}
public static String parseWeiXinHttpUrl(String url,String... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/common/util/FreemarkerUtil.java | src/main/java/org/jeewx/api/core/common/util/FreemarkerUtil.java | package org.jeewx.api.core.common.util;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Map;
import freemarker.core.TemplateClassResolver;
import freemarker.template.Configuration;... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/annotation/ReqType.java | src/main/java/org/jeewx/api/core/annotation/ReqType.java | package org.jeewx.api.core.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* 微信请求处理类型
* @author sfli.sir
*
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface ReqType {
public String value() default "";
}
| java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/WeiXinReqHandler.java | src/main/java/org/jeewx/api/core/handler/WeiXinReqHandler.java | package org.jeewx.api.core.handler;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.model.WeixinReqParam;
/**
* 获取微信接口的信息
* @author liguo
*
*/
public interface WeiXinReqHandler {
public String doRequest(WeixinReqParam weixinReqParam) throws WexinReqException;
}
| java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/impl/WeixinReqLogoUploadHandler.java | src/main/java/org/jeewx/api/core/handler/impl/WeixinReqLogoUploadHandler.java | package org.jeewx.api.core.handler.impl;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.util.Map;
import org.jeewx.api.core.annotation.ReqType;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.handler.W... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/impl/WeixinReqMediaUploadHandler.java | src/main/java/org/jeewx/api/core/handler/impl/WeixinReqMediaUploadHandler.java | package org.jeewx.api.core.handler.impl;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.util.Map;
import org.jeewx.api.core.annotation.ReqType;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.handler.W... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/impl/WeixinReqMediaDownHandler.java | src/main/java/org/jeewx/api/core/handler/impl/WeixinReqMediaDownHandler.java | package org.jeewx.api.core.handler.impl;
import java.util.Map;
import org.jeewx.api.core.annotation.ReqType;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.handler.WeiXinReqHandler;
import org.jeewx.api.core.req.model.DownloadMedia;
import org.jeewx.api.core.req.model.WeixinReqConfig... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/impl/WeixinReqMenuCreateHandler.java | src/main/java/org/jeewx/api/core/handler/impl/WeixinReqMenuCreateHandler.java | package org.jeewx.api.core.handler.impl;
import com.alibaba.fastjson.JSON;
import org.jeewx.api.core.annotation.ReqType;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.handler.WeiXinReqHandler;
import org.jeewx.api.core.req.model.WeixinReqConfig;
import org.jeewx.api.core.req.model.We... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/impl/WeixinReqDefaultHandler.java | src/main/java/org/jeewx/api/core/handler/impl/WeixinReqDefaultHandler.java | package org.jeewx.api.core.handler.impl;
import java.util.Map;
import org.jeewx.api.core.annotation.ReqType;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.handler.WeiXinReqHandler;
import org.jeewx.api.core.req.model.WeixinReqConfig;
import org.jeewx.api.core.req.model.WeixinReqPara... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/core/handler/impl/WeixinReqTemplateMessageHandler.java | src/main/java/org/jeewx/api/core/handler/impl/WeixinReqTemplateMessageHandler.java | package org.jeewx.api.core.handler.impl;
import com.alibaba.fastjson.JSON;
import org.jeewx.api.core.annotation.ReqType;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.handler.WeiXinReqHandler;
import org.jeewx.api.core.req.model.WeixinReqConfig;
import org.jeewx.api.core.req.model.We... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/extend/CustomJsonConfig.java | src/main/java/org/jeewx/api/extend/CustomJsonConfig.java | package org.jeewx.api.extend;
import com.alibaba.fastjson.serializer.PropertyFilter;
import com.alibaba.fastjson.support.config.FastJsonConfig;
/**
* 过滤不需要转换的属性
* @author luobaoli
*
*/
public class CustomJsonConfig extends FastJsonConfig {
@SuppressWarnings("rawtypes")
private Class clazz;
public CustomJsonConf... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/qrcode/QRCode.java | src/main/java/org/jeewx/api/qrcode/QRCode.java | /**
*
*/
package org.jeewx.api.qrcode;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Hashtable;
import java.util.Map;
import javax.imageio.ImageIO;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.DecodeHi... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/JwMessageCommentAPI.java | src/main/java/org/jeewx/api/wxsendmsg/JwMessageCommentAPI.java | package org.jeewx.api.wxsendmsg;
import com.alibaba.fastjson.JSONObject;
import org.jeewx.api.core.common.WxstoreUtils;
import org.jeewx.api.core.exception.WexinReqException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class JwMessageCommentAPI {
private static Logger logger = LoggerFactory.getLo... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/JwTemplateMessageAPI.java | src/main/java/org/jeewx/api/wxsendmsg/JwTemplateMessageAPI.java | package org.jeewx.api.wxsendmsg;
import com.alibaba.fastjson.JSONObject;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.WeiXinReqService;
import org.jeewx.api.core.req.model.message.*;
import org.jeewx.api.core.util.WeiXinConstant;
import org.slf4j.Logger;
import org.slf4j.LoggerF... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/JwSendMessageAPI.java | src/main/java/org/jeewx/api/wxsendmsg/JwSendMessageAPI.java | package org.jeewx.api.wxsendmsg;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.input.SAXBuilder;
import org.jeewx.api.core.common.HttpPostUtil;
import org.jeewx.api.core.common.WxstoreUtils;
import org.jeewx.api.core.excepti... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/JwKfaccountAPI.java | src/main/java/org/jeewx/api/wxsendmsg/JwKfaccountAPI.java | package org.jeewx.api.wxsendmsg;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.WeiXinReqService;
import org.jeewx.api.core.req.model.kfaccount.*;
import org.jeewx.api.core.util.WeiXinConstant;
import o... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/JwGetAutoReplyRuleAPI.java | src/main/java/org/jeewx/api/wxsendmsg/JwGetAutoReplyRuleAPI.java | package org.jeewx.api.wxsendmsg;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SimplePropertyPreFilter;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.WeiXinReqService;
import org.jeewx.api.core.req.model.mess... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/JwSendTemplateMsgAPI.java | src/main/java/org/jeewx/api/wxsendmsg/JwSendTemplateMsgAPI.java | package org.jeewx.api.wxsendmsg;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import org.jeewx.api.core.common.WxstoreUtils;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.model.message.TemplateMessageSendResult;
import org.jeewx.api.core.util.WeiXinCo... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/util/ReadImgUrls.java | src/main/java/org/jeewx/api/wxsendmsg/util/ReadImgUrls.java | package org.jeewx.api.wxsendmsg.util;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.jeewx.api.core.util.FileUtils;
public class ReadImgUrls {
public static String[] getImgs(String content) {
String img = "";
Pattern p_image;
Matcher m_image;
String s... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/SendMessageResponse.java | src/main/java/org/jeewx/api/wxsendmsg/model/SendMessageResponse.java | package org.jeewx.api.wxsendmsg.model;
/**
* 微信群发返回的结果
* @author LIAIJUN
*
*/
public class SendMessageResponse {
private String errcode;
private String errmsg;
private String msg_id;
public String getErrcode() {
return errcode;
}
public void setErrcode(String errcode) {
this.errcode = errcode;
}
pu... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/WxMedia.java | src/main/java/org/jeewx/api/wxsendmsg/model/WxMedia.java | package org.jeewx.api.wxsendmsg.model;
/**
* 多媒体资源文件
* @author LIAIJUN
*
*/
public class WxMedia {
private String fileName;
private String filePath;
private String type;
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/WxMediaResponse.java | src/main/java/org/jeewx/api/wxsendmsg/model/WxMediaResponse.java | package org.jeewx.api.wxsendmsg.model;
import java.util.Date;
/**
* 上传到微信的媒体资源文件bean
*
* @author LIAIJUN
*
*/
public class WxMediaResponse {
// {"type":"TYPE","media_id":"MEDIA_ID","created_at":123456789}
/** 媒体文件类型,分别有图片(image)、语音(voice)、视频(video)和缩略图(thumb) */
private String type;
/** 媒体资源ID */
private ... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/WxArticlesResponse.java | src/main/java/org/jeewx/api/wxsendmsg/model/WxArticlesResponse.java | package org.jeewx.api.wxsendmsg.model;
import java.util.Date;
/**
* 上传图文消息素材返回结果
*
* @author LIAIJUN
*
*/
public class WxArticlesResponse {
/** news,即图文消息 */
private String type;
/** 媒体文件/图文消息上传后获取的唯一标识 */
private String media_id;
/** 媒体文件上传时间 */
private Date created_at;
/** 图片上传成功之后的路径 */
private Str... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/WxArticle.java | src/main/java/org/jeewx/api/wxsendmsg/model/WxArticle.java | package org.jeewx.api.wxsendmsg.model;
/**
* 图文消息
* @author LIAIJUN
*
*/
public class WxArticle {
/** 图文消息缩略图的media_id */
private String thumb_media_id;
/** 图文消息的作者 */
private String author;
/** 图文消息的标题 */
private String title;
/** 在图文消息页面点击“阅读原文”后的页面 */
private String content_source_url;
/** 图文消息页面的内容,支持... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/WxKfaccount.java | src/main/java/org/jeewx/api/wxsendmsg/model/WxKfaccount.java | package org.jeewx.api.wxsendmsg.model;
/**
* 客服信息
* @author sfli.sir
*
*/
public class WxKfaccount {
private String kf_account;
private String kf_nick;
private String kf_id;
private String kf_headimgurl;
private String auto_accept;
private String accepted_case;
public String getAuto_accept() {
... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/WxArticleConfig.java | src/main/java/org/jeewx/api/wxsendmsg/model/WxArticleConfig.java | package org.jeewx.api.wxsendmsg.model;
/**
* 图文消息(用于"获取自定义菜单配置接口"和"获取自动回复规则")
* @author luobaoli
*
*/
public class WxArticleConfig {
/** 图文消息缩略图的media_id */
private String thumb_media_id;
/** 图文消息的标题 */
private String title;
/** 图文消息的作者 */
private String author;
/** 图文消息的摘要 */
private String digest;
/** 自... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/SendMessageReport.java | src/main/java/org/jeewx/api/wxsendmsg/model/SendMessageReport.java | package org.jeewx.api.wxsendmsg.model;
public class SendMessageReport {
/** 公众号的微信号 */
private String ToUserName;
/** 公众号群发助手的微信号,为mphelper */
private String FromUserName;
/** 创建时间的时间戳 */
private String CreateTime;
/** 消息类型,此处为event */
private String MsgType;
/** 事件信息,此处为MASSSENDJOBFINISH */
private String ... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/auto/AutoReplyInfoRule.java | src/main/java/org/jeewx/api/wxsendmsg/model/auto/AutoReplyInfoRule.java | package org.jeewx.api.wxsendmsg.model.auto;
import java.util.List;
/**
* 自动回复规则配置
* @author superuser
*
*/
public class AutoReplyInfoRule {
/** 关注后自动回复是否开启,0代表未开启,1代表开启 */
private String is_add_friend_reply_open;
/** 消息自动回复是否开启,0代表未开启,1代表开启 */
private String is_autoreply_open;
/** 关注后自动回复的信息 */
private Auto... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/auto/KeywordListInfo.java | src/main/java/org/jeewx/api/wxsendmsg/model/auto/KeywordListInfo.java | package org.jeewx.api.wxsendmsg.model.auto;
public class KeywordListInfo extends AutoReplyInfo{
/** 匹配模式,contain代表消息中含有该关键词即可,equal表示消息内容必须和关键词严格相同 */
private String match_mode;
public String getMatch_mode() {
return match_mode;
}
public void setMatch_mode(String match_mode) {
this.match_mode = match_mode;
... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/auto/KeyWordAutoReplyInfo.java | src/main/java/org/jeewx/api/wxsendmsg/model/auto/KeyWordAutoReplyInfo.java | package org.jeewx.api.wxsendmsg.model.auto;
import java.util.List;
/**
* 关键字信息
* @author superuser
*
*/
public class KeyWordAutoReplyInfo {
/** 规则名称 */
private String rule_name;
/** 创建时间 */
private String create_time;
/** 回复模式,reply_all代表全部回复,random_one代表随机回复其中一条 */
private String reply_mode;
/** 匹配的关键词列表 ... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/auto/ReplyListInfo.java | src/main/java/org/jeewx/api/wxsendmsg/model/auto/ReplyListInfo.java | package org.jeewx.api.wxsendmsg.model.auto;
import java.util.List;
import org.jeewx.api.wxsendmsg.model.WxArticleConfig;
/**
* 关键字回复内容
* @author luobaoli
*
*/
public class ReplyListInfo extends AutoReplyInfo {
/** 回复信息 */
private List<WxArticleConfig> news_info;
public List<WxArticleConfig> getNews_info() {
... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxsendmsg/model/auto/AutoReplyInfo.java | src/main/java/org/jeewx/api/wxsendmsg/model/auto/AutoReplyInfo.java | package org.jeewx.api.wxsendmsg.model.auto;
public class AutoReplyInfo {
/** 自动回复的类型。关注后自动回复和消息自动回复的类型仅支持文本(text)、图片(img)、语音(voice)、视频(video),关键词自动回复则还多了图文消息(news) */
private String type;
/** 对于文本类型,content是文本内容,对于图文、图片、语音、视频类型,content是mediaID */
private String content;
public String getType() {
return type;
}... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxaccount/JwAccountAPI.java | src/main/java/org/jeewx/api/wxaccount/JwAccountAPI.java | package org.jeewx.api.wxaccount;
import com.alibaba.fastjson.JSONObject;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.WeiXinReqService;
import org.jeewx.api.core.req.model.account.QrcodeActionInfo;
import org.jeewx.api.core.req.model.account.QrcodeCreate;
import org.jeewx.api.co... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxaccount/model/WxQrcode.java | src/main/java/org/jeewx/api/wxaccount/model/WxQrcode.java | package org.jeewx.api.wxaccount.model;
public class WxQrcode {
private String ticket;
private String expire_seconds;
private String url;
public String getTicket() {
return ticket;
}
public void setTicket(String ticket) {
this.ticket = ticket;
}
public String getExpire_seconds() {
return expire_se... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxmenu/JwPersonalizedMenuAPI.java | src/main/java/org/jeewx/api/wxmenu/JwPersonalizedMenuAPI.java | package org.jeewx.api.wxmenu;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.jeewx.api.core.common.WxstoreUtils;
import org.jeewx.api.core.req.model.menu.PersonalizedMenu;
import org.jeewx.api.core.req.model.menu.WeixinButton;
import org.jeew... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
jeecgboot/weixin4j | https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxmenu/JwMenuAPI.java | src/main/java/org/jeewx/api/wxmenu/JwMenuAPI.java | package org.jeewx.api.wxmenu;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SimplePropertyPreFilter;
import org.jeewx.api.core.exception.WexinReqException;
import org.jeewx.api.core.req.WeiXinReqService;
import org.jeewx.api.core.req.model.menu.*;... | java | Apache-2.0 | 9a0a503cc99e24c77de671890fae15ee3235669f | 2026-01-05T02:41:50.789942Z | false |
memento/GeneticAlgorithm | https://github.com/memento/GeneticAlgorithm/blob/c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e/src/fr/dieul/lab/geneticalgorithm/SimpleDemoGA.java | src/fr/dieul/lab/geneticalgorithm/SimpleDemoGA.java | package fr.dieul.lab.geneticalgorithm;
import java.util.Random;
import fr.dieul.lab.geneticalgorithm.model.Individual;
import fr.dieul.lab.geneticalgorithm.model.Population;
public class SimpleDemoGA {
private Population population;
private Individual fittest;
private Individual secondFittest;
private int gener... | java | Apache-2.0 | c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e | 2026-01-05T02:42:28.208385Z | false |
memento/GeneticAlgorithm | https://github.com/memento/GeneticAlgorithm/blob/c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e/src/fr/dieul/lab/geneticalgorithm/util/ConsoleColors.java | src/fr/dieul/lab/geneticalgorithm/util/ConsoleColors.java | package fr.dieul.lab.geneticalgorithm.util;
public class ConsoleColors {
// Reset
public static final String RESET = "\033[0m"; // Text Reset
// Regular Colors
public static final String BLACK = "\033[0;30m"; // BLACK
public static final String RED = "\033[0;31m"; // RED
public static final String G... | java | Apache-2.0 | c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e | 2026-01-05T02:42:28.208385Z | false |
memento/GeneticAlgorithm | https://github.com/memento/GeneticAlgorithm/blob/c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e/src/fr/dieul/lab/geneticalgorithm/util/package-info.java | src/fr/dieul/lab/geneticalgorithm/util/package-info.java | package fr.dieul.lab.geneticalgorithm.util;
/* This package should contain all utility classes, that bring some features to the application but no business value*/ | java | Apache-2.0 | c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e | 2026-01-05T02:42:28.208385Z | false |
memento/GeneticAlgorithm | https://github.com/memento/GeneticAlgorithm/blob/c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e/src/fr/dieul/lab/geneticalgorithm/model/package-info.java | src/fr/dieul/lab/geneticalgorithm/model/package-info.java | package fr.dieul.lab.geneticalgorithm.model;
/* This package should contain all the model/business classes such as Population, Individual*/ | java | Apache-2.0 | c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e | 2026-01-05T02:42:28.208385Z | false |
memento/GeneticAlgorithm | https://github.com/memento/GeneticAlgorithm/blob/c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e/src/fr/dieul/lab/geneticalgorithm/model/Individual.java | src/fr/dieul/lab/geneticalgorithm/model/Individual.java | package fr.dieul.lab.geneticalgorithm.model;
import java.util.Arrays;
import java.util.Random;
import fr.dieul.lab.geneticalgorithm.util.ConsoleColors;
//Individual class
public class Individual implements Cloneable{
private int geneLength;
private int fitness = 0;
private int[] genes;
public Individual(int ge... | java | Apache-2.0 | c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e | 2026-01-05T02:42:28.208385Z | false |
memento/GeneticAlgorithm | https://github.com/memento/GeneticAlgorithm/blob/c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e/src/fr/dieul/lab/geneticalgorithm/model/Population.java | src/fr/dieul/lab/geneticalgorithm/model/Population.java | package fr.dieul.lab.geneticalgorithm.model;
//Population class
public class Population {
private int popSize;
private Individual[] individuals;
private int geneLength;
private int fittestScore = 0;
/**
* @purpose Initialize population
* @param popSize is the population size
* @param geneLength is t... | java | Apache-2.0 | c61bf2adcc9bc0bd67092bf5c5f365cb27b7155e | 2026-01-05T02:42:28.208385Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/Main.java | tutorials/src/com/xoppa/blog/libgdx/Main.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step4/LoadModelsTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step4/LoadModelsTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step1/LoadModelsTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step1/LoadModelsTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step3/LoadModelsTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step3/LoadModelsTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step2/LoadModelsTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadmodels/step2/LoadModelsTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step4/FrustumCullingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step4/FrustumCullingTest.java | package com.xoppa.blog.libgdx.g3d.frustumculling.step4;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.gdx.graphics.Camera;
import com.badlogic.gdx.graphics.Color;
import com.badl... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step1/FrustumCullingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step1/FrustumCullingTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step3/FrustumCullingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step3/FrustumCullingTest.java | package com.xoppa.blog.libgdx.g3d.frustumculling.step3;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.gdx.graphics.Camera;
import com.badlogic.gdx.graphics.Color;
import com.badl... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step2/FrustumCullingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/frustumculling/step2/FrustumCullingTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step4/ShaderTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step4/ShaderTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step4/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step4/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step5/ShaderTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step5/ShaderTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step5/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step5/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step1/ShaderTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step1/ShaderTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step6/ShaderTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step6/ShaderTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step6/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step6/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step3/ShaderTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step3/ShaderTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step2/ShaderTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/createshader/step2/ShaderTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step4/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step4/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step5/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step5/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step7/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step7/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step1/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step1/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step6/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step6/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step3/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step3/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step2/BehindTheScenesTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/behindscenes/step2/BehindTheScenesTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadscene/step1/LoadSceneTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadscene/step1/LoadSceneTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadscene/step3/LoadSceneTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadscene/step3/LoadSceneTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/loadscene/step2/LoadSceneTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/loadscene/step2/LoadSceneTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step8/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step8/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step8/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step8/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step9/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step9/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step9/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step9/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step4/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step4/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step4/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step4/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step5/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step5/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step5/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step5/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step7/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step7/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step7/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step7/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step1/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step1/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step1/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step1/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step6/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step6/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step6/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step6/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step3/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step3/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step3/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step3/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step2/MaterialTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step2/MaterialTest.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step2/TestShader.java | tutorials/src/com/xoppa/blog/libgdx/g3d/usingmaterials/step2/TestShader.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/raypicking/step1/RayPickingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/raypicking/step1/RayPickingTest.java | package com.xoppa.blog.libgdx.g3d.raypicking.step1;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.InputAdapter;
import com.badlogic.gdx.InputMultiplexer;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/raypicking/step3/RayPickingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/raypicking/step3/RayPickingTest.java | package com.xoppa.blog.libgdx.g3d.raypicking.step3;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.InputAdapter;
import com.badlogic.gdx.InputMultiplexer;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/raypicking/step2/RayPickingTest.java | tutorials/src/com/xoppa/blog/libgdx/g3d/raypicking/step2/RayPickingTest.java |
package com.xoppa.blog.libgdx.g3d.raypicking.step2;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.InputAdapter;
import com.badlogic.gdx.InputMultiplexer;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step8/CardGame.java | tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step8/CardGame.java | package com.xoppa.blog.libgdx.g3d.cardgame.step8;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Mesh;
import com.badlogic.gdx.graph... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step9/CardGame.java | tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step9/CardGame.java | package com.xoppa.blog.libgdx.g3d.cardgame.step9;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Mesh;
import com.badlogic.gdx.graph... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/stepa/CardGame.java | tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/stepa/CardGame.java | package com.xoppa.blog.libgdx.g3d.cardgame.stepa;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Mesh;
import com.badlogic.gdx.graph... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step4/CardGame.java | tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step4/CardGame.java | package com.xoppa.blog.libgdx.g3d.cardgame.step4;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.g2d.Sprite;
import com.badlogic... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
xoppa/blog | https://github.com/xoppa/blog/blob/aa6611044582f2023709364a6af025c95a4f09ac/tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step5/CardGame.java | tutorials/src/com/xoppa/blog/libgdx/g3d/cardgame/step5/CardGame.java | package com.xoppa.blog.libgdx.g3d.cardgame.step5;
import static com.xoppa.blog.libgdx.Main.data;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.PerspectiveCamera;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.b... | java | Apache-2.0 | aa6611044582f2023709364a6af025c95a4f09ac | 2026-01-05T02:42:28.833355Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.